├── .github └── workflows │ └── cmaketest.yml ├── .gitignore ├── Build.bat ├── CMakeLists.txt ├── README.md ├── SOUI ├── CMakeLists.txt ├── SOUI.pro ├── include │ ├── SApp.h │ ├── activex │ │ ├── SBStr.h │ │ ├── flash10t.tlh │ │ └── flash10t.tli │ ├── animation │ │ ├── SAlphaAnimation.h │ │ ├── SAnimation.h │ │ ├── SAnimationSet.h │ │ ├── SInterpolatorImpl.h │ │ ├── SRotateAnimation.h │ │ ├── STransformation.h │ │ ├── STranslateAnimation.h │ │ └── ScaleAnimation.h │ ├── control │ │ ├── SActiveX.h │ │ ├── SCalendar.h │ │ ├── SCaption.h │ │ ├── SCmnCtrl.h │ │ ├── SComboBase.h │ │ ├── SComboBox.h │ │ ├── SComboView.h │ │ ├── SDateTimePicker.h │ │ ├── SDropDown.h │ │ ├── SHeaderCtrl.h │ │ ├── SHotKeyCtrl.h │ │ ├── SListCtrl.h │ │ ├── SListView.h │ │ ├── SListbox.h │ │ ├── SMCListView.h │ │ ├── SMenuBar.h │ │ ├── SMessageBox.h │ │ ├── SRealWnd.h │ │ ├── SRealWndHandler-i.h │ │ ├── SRichEdit.h │ │ ├── SScrollbar.h │ │ ├── SSliderBar.h │ │ ├── SSpinButtonCtrl.h │ │ ├── SSplitWnd.h │ │ ├── STabCtrl.h │ │ ├── STileView.h │ │ ├── STree.h │ │ ├── STreeCtrl.h │ │ ├── STreeView.h │ │ └── SouiCtrls.h │ ├── core │ │ ├── SAccelerator.h │ │ ├── SCaret.h │ │ ├── SCmnMap.h │ │ ├── SDefine.h │ │ ├── SDropTargetDispatcher.h │ │ ├── SFocusManager.h │ │ ├── SHostDialog.h │ │ ├── SHostMsgDef.h │ │ ├── SHostWnd.h │ │ ├── SItemPanel.h │ │ ├── SMsgLoop.h │ │ ├── SNativeWnd.h │ │ ├── SObjType.h │ │ ├── SObjectFactory.h │ │ ├── SPanel.h │ │ ├── SScrollBarHandler.h │ │ ├── SSingleton.h │ │ ├── SSingleton2.h │ │ ├── SSingleton2Type.h │ │ ├── SSingletonMap.h │ │ ├── SSkin.h │ │ ├── SSkinObjBase.h │ │ ├── STimerlineHandlerMgr.h │ │ ├── SWindowMgr.h │ │ ├── SWnd.h │ │ ├── SWndAccessible.h │ │ ├── SWndContainer-i.h │ │ ├── SWndContainerImpl.h │ │ └── SWndStyle.h │ ├── event │ │ ├── SEventCrack.h │ │ ├── SEventSet.h │ │ ├── SEventSubscriber.h │ │ ├── SEvents.h │ │ └── SNotifyCenter.h │ ├── helper │ │ ├── SAdapterBase.h │ │ ├── SAppDir.h │ │ ├── SAssertFmt.h │ │ ├── SAttrCracker.h │ │ ├── SColor.h │ │ ├── SDIBHelper.h │ │ ├── SDpiHelper.hpp │ │ ├── SDpiScale.h │ │ ├── SDragWnd.h │ │ ├── SFunctor.hpp │ │ ├── SHostMgr.h │ │ ├── SIpcParamHelper.hpp │ │ ├── SListViewItemLocator.h │ │ ├── SLogDef.h │ │ ├── SMemDC.h │ │ ├── SMenu.h │ │ ├── SMenuEx.h │ │ ├── SMenuWndHook.h │ │ ├── SResID.h │ │ ├── SScriptTimer.h │ │ ├── STaskHandler.h │ │ ├── STileViewItemLocator.h │ │ ├── STime.h │ │ ├── STimerEx.h │ │ ├── SToolTip.h │ │ ├── SUnknown.h │ │ ├── SplitString.h │ │ ├── SwndFinder.h │ │ ├── SwndMsgCracker.h │ │ ├── slog.h │ │ └── swndspy.h │ ├── interface │ │ ├── SAdapter-i.h │ │ ├── SAnimation-i.h │ │ ├── SAttrStorage-i.h │ │ ├── SHostMsgHandler-i.h │ │ ├── SImgDecoder-i.h │ │ ├── SListViewItemLocator-i.h │ │ ├── SPathEffect-i.h │ │ ├── SRender-i.h │ │ ├── SResProvider-i.h │ │ ├── SScriptModule-i.h │ │ ├── SSkinobj-i.h │ │ ├── STaskLoop-i.h │ │ ├── STimelineHandler-i.h │ │ ├── STranslator-i.h │ │ ├── STreeViewItemLocator-i.h │ │ ├── SValueAnimator-i.h │ │ ├── sacchelper-i.h │ │ ├── saccproxy-i.h │ │ ├── scaret-i.h │ │ ├── sinterpolator-i.h │ │ ├── sipcobj-i.h │ │ ├── slayout-i.h │ │ ├── slog-i.h │ │ └── stooltip-i.h │ ├── layout │ │ ├── SGridLayout.h │ │ ├── SGridLayoutParamStruct.h │ │ ├── SLayoutSize.h │ │ ├── SLinearLayout.h │ │ ├── SLinearLayoutParamStruct.h │ │ ├── SouiLayout.h │ │ └── SouiLayoutParamStruct.h │ ├── matrix │ │ ├── SCamera.h │ │ ├── SFloat.h │ │ ├── SFloatBits.h │ │ ├── SMatrix.h │ │ ├── SPoint.h │ │ └── SRect.h │ ├── msaa │ │ ├── SAccProxyCmnCtrl.h │ │ └── SAccProxyWindow.h │ ├── res.mgr │ │ ├── SDpiAwareFont.h │ │ ├── SFontInfo.h │ │ ├── SFontPool.h │ │ ├── SNamedValue.h │ │ ├── SObjDefAttr.h │ │ ├── SResProvider.h │ │ ├── SResProviderMgr.h │ │ ├── SSkinPool.h │ │ ├── SStylePool.h │ │ └── SUiDef.h │ ├── soui-version.h │ ├── souistd.h │ ├── stdint.h │ └── valueAnimator │ │ ├── SValueAnimator.h │ │ └── TypeEvaluator.h ├── resource.h ├── soui.rc ├── soui3.vcproj └── src │ ├── SApp.cpp │ ├── activex │ ├── SAxContainer.cpp │ ├── SAxContainer.h │ ├── SAxUtil.h │ └── SBStr.cpp │ ├── animation │ ├── SAlphaAnimation.cpp │ ├── SAnimation.cpp │ ├── SAnimationSet.cpp │ ├── SInterpolatorImpl.cpp │ ├── SRotateAnimation.cpp │ ├── STransformation.cpp │ ├── STranslateAnimation.cpp │ └── ScaleAnimation.cpp │ ├── control │ ├── SActiveX.cpp │ ├── SCalendar.cpp │ ├── SCaption.cpp │ ├── SCmnCtrl.cpp │ ├── SComboBase.cpp │ ├── SComboBox.cpp │ ├── SComboView.cpp │ ├── SDateTimePicker.cpp │ ├── SDropDown.cpp │ ├── SHeaderCtrl.cpp │ ├── SHotKeyCtrl.cpp │ ├── SListCtrl.cpp │ ├── SListView.cpp │ ├── SListbox.cpp │ ├── SMCListView.cpp │ ├── SMenuBar.cpp │ ├── SMessageBox.cpp │ ├── SRealWnd.cpp │ ├── SRichEdit.cpp │ ├── SScrollbar.cpp │ ├── SSliderBar.cpp │ ├── SSpinButtonCtrl.cpp │ ├── SSplitWnd.cpp │ ├── STabCtrl.cpp │ ├── STileView.cpp │ ├── STreeCtrl.cpp │ └── STreeView.cpp │ ├── core │ ├── SAccelerator.cpp │ ├── SCaret.cpp │ ├── SDropTargetDispatcher.cpp │ ├── SFocusManager.cpp │ ├── SHostDialog.cpp │ ├── SItemPanel.cpp │ ├── SMsgLoop.cpp │ ├── SNativeWnd.cpp │ ├── SObjectFactory.cpp │ ├── SPanel.cpp │ ├── SScrollBarHandler.cpp │ ├── SSkin.cpp │ ├── SSkinObjBase.cpp │ ├── STimerlineHandlerMgr.cpp │ ├── SWindowMgr.cpp │ ├── Swnd.cpp │ ├── SwndAccessible.cpp │ ├── SwndContainerImpl.cpp │ ├── SwndStyle.cpp │ └── shostwnd.cpp │ ├── event │ ├── SEventSet.cpp │ └── SNotifyCenter.cpp │ ├── helper │ ├── SAppDir.cpp │ ├── SDIBHelper.cpp │ ├── SDpiScale.cpp │ ├── SDragWnd.cpp │ ├── SHostMgr.cpp │ ├── SListViewItemLocator.cpp │ ├── SMemDC.cpp │ ├── SMenu.cpp │ ├── SMenuEx.cpp │ ├── SMenuWndHook.cpp │ ├── SScriptTimer.cpp │ ├── STaskHandler.cpp │ ├── STileViewItemLocator.cpp │ ├── STimerEx.cpp │ ├── SToolTip.cpp │ ├── SwndFinder.cpp │ └── stime.cpp │ ├── layout │ ├── SGridLayout.cpp │ ├── SLayoutSize.cpp │ ├── SLinearLayout.cpp │ └── SouiLayout.cpp │ ├── matrix │ ├── SCamera.cpp │ ├── SMatrix.cpp │ ├── SPoint.cpp │ └── SRect.cpp │ ├── msaa │ ├── SAccProxyCmnCtrl.cpp │ └── SAccProxyWindow.cpp │ ├── res.mgr │ ├── SDpiAwareFont.cpp │ ├── SFontPool.cpp │ ├── SNamedValue.cpp │ ├── SObjDefAttr.cpp │ ├── SResProvider.cpp │ ├── SResProviderMgr.cpp │ ├── SSkinPool.cpp │ ├── SStylePool.cpp │ └── SUiDef.cpp │ ├── updatelayeredwindow │ ├── SUpdateLayeredWindow.cpp │ └── SUpdateLayeredWindow.h │ └── valueAnimator │ └── SValueAnimator.cpp ├── __cmake ├── CMakeLists.txt ├── cotire.cmake ├── global.cmake ├── internal_utils.cmake └── soui3-demo.cmake ├── clone_demos.bat ├── common.pri ├── components ├── CMakeLists.txt ├── SIpcObject │ ├── CMakeLists.txt │ ├── SIpcObject.cpp │ ├── SIpcObject.h │ ├── SIpcObject.pro │ ├── SIpcObject.rc │ ├── SIpcObject.vcproj │ ├── ShareMemBuffer.cpp │ ├── ShareMemBuffer.h │ └── stdafx.h ├── ScriptModule-LUA │ ├── CMakeLists.txt │ ├── ScriptModule-LUA.pro │ ├── ScriptModule-LUA.sln │ ├── lua_tinker │ │ ├── lua_tinker.cpp │ │ └── lua_tinker.h │ ├── scriptmodule-lua.vcproj │ └── src │ │ ├── ReadMe.txt │ │ ├── ScriptModule-Lua.cpp │ │ ├── ScriptModule-Lua.h │ │ ├── exports │ │ ├── exp_Basic.h │ │ ├── exp_ResProvider.h │ │ ├── exp_ScriptModule.h │ │ ├── exp_Window.h │ │ ├── exp_app.h │ │ ├── exp_ctrls.h │ │ ├── exp_eventArgs.h │ │ ├── exp_hostwnd.h │ │ ├── exp_msgbox.h │ │ ├── exp_object.h │ │ ├── exp_pugixml.h │ │ ├── exp_soui.cpp │ │ ├── exp_strcpcvt.h │ │ └── exp_string.h │ │ ├── resource.h │ │ ├── scriptmodule-lua.rc │ │ ├── scriptmodule-lua.vcproj │ │ └── stdafx.h ├── TaskLoop │ ├── CMakeLists.txt │ ├── TaskLoop.cpp │ ├── TaskLoop.h │ ├── TaskLoop.pro │ ├── TaskLoop.rc │ ├── TaskLoop.vcproj │ ├── thread.cpp │ └── thread.h ├── com-cfg.h ├── commask.h ├── commgr2.h ├── components.pro ├── imgdecoder-gdip │ ├── CMakeLists.txt │ ├── ReadMe.txt │ ├── imgdecoder-gdip.cpp │ ├── imgdecoder-gdip.h │ ├── imgdecoder-gdip.pro │ ├── imgdecoder-gdip.rc │ └── imgdecoder-gdip.vcproj ├── imgdecoder-png │ ├── CMakeLists.txt │ ├── decoder-apng.cpp │ ├── decoder-apng.h │ ├── imgdecoder-png.cpp │ ├── imgdecoder-png.h │ ├── imgdecoder-png.pro │ ├── imgdecoder-png.rc │ └── imgdecoder-png.vcproj ├── imgdecoder-stb │ ├── CMakeLists.txt │ ├── imgdecoder-stb.cpp │ ├── imgdecoder-stb.h │ ├── imgdecoder-stb.pro │ ├── imgdecoder-stb.rc │ ├── imgdecoder-stb.vcproj │ └── stb_image.h ├── imgdecoder-wic │ ├── CMakeLists.txt │ ├── ReadMe.txt │ ├── dllmain.cpp │ ├── imgdecoder-wic.cpp │ ├── imgdecoder-wic.h │ ├── imgdecoder-wic.pro │ ├── imgdecoder-wic.rc │ ├── imgdecoder-wic.vcproj │ ├── resource.h │ ├── stdafx.h │ └── targetver.h ├── log4z │ ├── CMakeLists.txt │ ├── COPYRIGHT │ ├── log4z.cpp │ ├── log4z.h │ ├── log4z.pro │ ├── log4z.rc │ └── log4z.vcproj ├── render-gdi │ ├── CMakeLists.txt │ ├── GradientFillHelper.cpp │ ├── GradientFillHelper.h │ ├── ReadMe.txt │ ├── render-gdi.cpp │ ├── render-gdi.h │ ├── render-gdi.pro │ ├── render-gdi.rc │ ├── render-gdi.vcproj │ ├── resource.h │ └── stdafx.h ├── render-skia │ ├── CMakeLists.txt │ ├── PathEffect-Skia.cpp │ ├── PathEffect-Skia.h │ ├── PathMeasure-Skia.cpp │ ├── PathMeasure-Skia.h │ ├── ReadMe.txt │ ├── drawtext-skia.cpp │ ├── drawtext-skia.h │ ├── render-skia.cpp │ ├── render-skia.h │ ├── render-skia.pro │ ├── render-skia.rc │ ├── render-skia.vcproj │ ├── resource.h │ ├── skia2rop2.cpp │ ├── skia2rop2.h │ └── stdafx.h ├── resprovider-7zip │ ├── CMakeLists.txt │ ├── SResProvider7Zip.cpp │ ├── SResProvider7Zip.h │ ├── Zip7Archive.cpp │ ├── Zip7Archive.h │ ├── cursoricon.cpp │ ├── resource.h │ ├── resprovider-7zip.pro │ ├── resprovider-7zip.rc │ ├── resprovider-7zip.vcproj │ ├── stdafx.h │ └── zip7resprovider-param.h ├── resprovider-zip │ ├── CMakeLists.txt │ ├── ReadMe.txt │ ├── SResProviderZip.cpp │ ├── SResProviderZip.h │ ├── ZipArchive.h │ ├── cursoricon.cpp │ ├── resource.h │ ├── resprovider-zip.pro │ ├── resprovider-zip.rc │ ├── resprovider-zip.vcproj │ ├── stdafx.h │ ├── zipArchive.cpp │ └── zipresprovider-param.h └── translator │ ├── CMakeLists.txt │ ├── ReadMe.txt │ ├── dllmain.cpp │ ├── resource.h │ ├── stdafx.h │ ├── targetver.h │ ├── translator.cpp │ ├── translator.h │ ├── translator.pro │ ├── translator.rc │ └── translator.vcproj ├── config ├── build.cfg ├── build.cfg.in ├── com-def.h ├── com-def.h.in ├── core-def.h ├── core-def.h.in ├── options │ ├── com-dll.h │ ├── com-lib.h │ ├── dll.h │ └── lib.h └── readme.txt ├── controls.extend ├── ExtendCtrls.cpp ├── ExtendCtrls.h ├── ExtendSkins.cpp ├── ExtendSkins.h ├── FileHelper.h ├── SAniWindow.cpp ├── SAniWindow.h ├── SAnimImg.cpp ├── SAnimImg.h ├── SAnimator.h ├── SButtonEx.cpp ├── SButtonEx.h ├── SByteArray.cpp ├── SByteArray.h ├── SCalendar2.cpp ├── SCalendar2.h ├── SChatEdit.cpp ├── SChatEdit.h ├── SCheckBox2.cpp ├── SCheckBox2.h ├── SChromeTabCtrl.cpp ├── SChromeTabCtrl.h ├── SComboBoxEx.cpp ├── SComboBoxEx.h ├── SDateTimeEdit.cpp ├── SDateTimeEdit.h ├── SDocHostUIHandler.cpp ├── SDocHostUIHandler.h ├── SFadeFrame.cpp ├── SFadeFrame.h ├── SFreeMoveWindow.cpp ├── SFreeMoveWindow.h ├── SGroupList.cpp ├── SGroupList.h ├── SHexEdit.cpp ├── SHexEdit.h ├── SIECtrl.cpp ├── SIECtrl.h ├── SIPAddressCtrl.cpp ├── SIPAddressCtrl.h ├── SImageMaskWnd.cpp ├── SImageMaskWnd.h ├── SImagePlayer.cpp ├── SImagePlayer.h ├── SItembox.cpp ├── SItembox.h ├── SListCtrlEx.cpp ├── SListCtrlEx.h ├── SListboxex.cpp ├── SListboxex.h ├── SMcListViewEx │ ├── Adapter参考.h │ ├── SHeaderCtrlEx.cpp │ ├── SHeaderCtrlEx.h │ ├── SLoopButton.cpp │ ├── SLoopButton.h │ ├── SMCListViewEx.cpp │ ├── SMCListViewEx.h │ ├── STabCtrlHeaderBinder.cpp │ └── STabCtrlHeaderBinder.h ├── SProgressRing.cpp ├── SProgressRing.h ├── SRadioBox2.cpp ├── SRadioBox2.h ├── SRatingBar.cpp ├── SRatingBar.h ├── SRealWndHandler_Scintilla.cpp ├── SRealWndHandler_Scintilla.h ├── SRoundImage.cpp ├── SRoundImage.h ├── SScrollText.cpp ├── SScrollText.h ├── SSkinImgFrame3.cpp ├── SSkinImgFrame3.h ├── SSkinNewScrollBar.h ├── SSplitBar.cpp ├── SSplitBar.h ├── SStaticGdip.cpp ├── SStaticGdip.h ├── STabCtrl2.cpp ├── STabCtrl2.h ├── SText.cpp ├── SText.h ├── STreeBox.cpp ├── STreeBox.h ├── STurn3DView.cpp ├── STurn3DView.h ├── SVscrollbar.h ├── SWkeWebkit.cpp ├── SWkeWebkit.h ├── ScintillaWnd.cpp ├── ScintillaWnd.h ├── TipWnd.cpp ├── TipWnd.h ├── dlghelp │ └── souidlgs.h ├── gif │ ├── SGifPlayer.cpp │ ├── SGifPlayer.h │ ├── SSkinAPNG.cpp │ ├── SSkinAPNG.h │ ├── SSkinAni.h │ ├── SSkinGif.cpp │ ├── SSkinGif.h │ ├── SSkinPNGX.cpp │ └── SSkinPNGX.h ├── image3d │ ├── 3dTransform.h │ ├── 3dlib.cpp │ ├── 3dlib.h │ ├── 3dmatrix.cpp │ ├── 3dmatrix.h │ ├── 3dtransform.cpp │ └── PerspectiveTransform.h ├── propgrid │ ├── SPropertyEmbedWndHelper.hpp │ ├── SPropertyGrid.cpp │ ├── SPropertyGrid.h │ ├── SPropertyItem-i.h │ ├── SPropertyItemBase.cpp │ ├── SPropertyItemBase.h │ ├── colorpicker │ │ ├── ColourPopup.cpp │ │ ├── ColourPopup.h │ │ ├── SColorPicker.cpp │ │ ├── SColorPicker.h │ │ └── Tooltipctrl.h │ └── propitem │ │ ├── SPropertyItem-Color.cpp │ │ ├── SPropertyItem-Color.h │ │ ├── SPropertyItem-Group.cpp │ │ ├── SPropertyItem-Group.h │ │ ├── SPropertyItem-Option.cpp │ │ ├── SPropertyItem-Option.h │ │ ├── SPropertyItem-Rect.cpp │ │ ├── SPropertyItem-Rect.h │ │ ├── SPropertyItem-Size.cpp │ │ ├── SPropertyItem-Size.h │ │ ├── SPropertyItem-Text.cpp │ │ └── SPropertyItem-Text.h ├── readme.txt ├── reg.h ├── reole │ ├── RichEditOle.cpp │ ├── RichEditOle.h │ ├── dataobject.cpp │ └── dataobject.h ├── smiley │ └── SSmileyCtrl.h └── trayicon │ ├── SShellNotifyIcon.cpp │ └── SShellNotifyIcon.h ├── cpy-cfg.pri ├── demo ├── CAdapter.h ├── CDropTarget.h ├── CMakeLists.txt ├── DeclareDPIAware.manifest ├── FormatMsgDlg.cpp ├── FormatMsgDlg.h ├── MainDlg.cpp ├── MainDlg.h ├── SCheckBox2.cpp ├── SCheckBox2.h ├── SInterpolatorView.cpp ├── SInterpolatorView.h ├── SMatrixWindow.cpp ├── SMatrixWindow.h ├── SPathView.cpp ├── SPathView.h ├── SmileyCreateHook.cpp ├── SmileyCreateHook.h ├── ThreadObject.cpp ├── ThreadObject.h ├── adapter.h ├── appledock │ ├── SDesktopDock.cpp │ └── SDesktopDock.h ├── build_rc2.bat ├── clock │ ├── sclock.cpp │ └── sclock.h ├── demo.cpp ├── demo.pro ├── demo.rc ├── demo.vcproj ├── filewnd │ ├── image │ │ ├── bkgnd.png │ │ └── test.gif │ └── test.xml ├── gif │ ├── 0.gif │ ├── 1.gif │ ├── 10.gif │ ├── 2.gif │ ├── 3.gif │ ├── 4.gif │ ├── 5.gif │ ├── 6.gif │ ├── 7.gif │ ├── 8.gif │ └── 9.gif ├── magnet │ ├── MagnetFrame.cpp │ └── MagnetFrame.h ├── qrcode │ ├── QR_Encode.cpp │ ├── QR_Encode.h │ ├── SQrCtrl.cpp │ └── SQrCtrl.h ├── res │ ├── resource.h │ └── soui_res.rc2 ├── resource.h ├── skin │ ├── SDemoSkin.cpp │ ├── SDemoSkin.h │ ├── SSkinLoader.cpp │ ├── SSkinLoader.h │ ├── SetSkinWnd2.cpp │ └── SetSkinWnd2.h ├── stdafx.h ├── themes │ ├── 1.png │ ├── 10.png │ ├── 10fix.png │ ├── 11.png │ ├── 11fix.png │ ├── 12.png │ ├── 12fix.png │ ├── 13.png │ ├── 13fix.png │ ├── 14.PNG │ ├── 14fix.png │ ├── 1fix.png │ ├── 2.png │ ├── 2fix.png │ ├── 3.png │ ├── 3fix.png │ ├── 4.png │ ├── 4fix.png │ ├── 5.png │ ├── 5fix.png │ ├── 6.png │ ├── 6fix.png │ ├── 7.png │ ├── 7fix.png │ ├── 8.png │ ├── 8fix.png │ ├── 9.png │ ├── 9fix.png │ ├── skin1 │ │ ├── img │ │ │ └── page_icons.png │ │ ├── uires.idx │ │ └── xml │ │ │ └── skin.xml │ ├── skin2 │ │ ├── img │ │ │ └── page_icons.png │ │ ├── uires.idx │ │ └── xml │ │ │ └── skin.xml │ ├── skin3 │ │ ├── img │ │ │ └── page_icons.png │ │ ├── uires.idx │ │ └── xml │ │ │ └── skin.xml │ └── themes_config.xml ├── trayicon │ ├── SShellNofityHwnd2.cpp │ ├── SShellNofityHwnd2.h │ ├── SShellNotifyIcon.cpp │ └── SShellNotifyIcon.h ├── uianimation │ ├── UIAnimation.h │ ├── UiAnimationWnd.cpp │ └── UiAnimationWnd.h ├── uires.zip ├── uires │ ├── anim │ │ ├── alpha_in.xml │ │ ├── alpha_out.xml │ │ ├── anihost.xml │ │ ├── love.xml │ │ ├── rotate.xml │ │ ├── scale_in.xml │ │ ├── scale_out.xml │ │ ├── slide_hide.xml │ │ └── slide_show.xml │ ├── bkimg │ │ ├── 10fix.png │ │ ├── 11fix.png │ │ ├── 12fix.png │ │ ├── 13fix.png │ │ ├── 14fix.png │ │ ├── 15fix.png │ │ ├── 16fix.png │ │ ├── 17fix.png │ │ ├── 18fix.png │ │ ├── 1fix.png │ │ ├── 2fix.png │ │ ├── 3fix.png │ │ ├── 4fix.png │ │ ├── 5fix.png │ │ ├── 6fix.png │ │ ├── 7fix.png │ │ ├── 8fix.png │ │ └── 9fix.png │ ├── image │ │ ├── 32 │ │ │ ├── loading_1.ico │ │ │ ├── loading_2.ico │ │ │ ├── loading_3.ico │ │ │ ├── loading_4.ico │ │ │ ├── loading_5.ico │ │ │ └── loading_6.ico │ │ ├── 021.ani │ │ ├── MM │ │ │ ├── Qme.ico │ │ │ ├── Qme@2x.ico │ │ │ ├── away.ico │ │ │ ├── away@2x.ico │ │ │ ├── busy.ico │ │ │ ├── busy@2x.ico │ │ │ ├── imonline.ico │ │ │ ├── imonline@2x.ico │ │ │ ├── invisible.ico │ │ │ ├── invisible@2x.ico │ │ │ ├── mute.ico │ │ │ ├── mute@2x.ico │ │ │ ├── offline.ico │ │ │ └── offline@2x.ico │ │ ├── TrayMenu │ │ │ ├── circulation.png │ │ │ ├── ilike.png │ │ │ ├── menu_ico.png │ │ │ ├── next.png │ │ │ ├── pause.png │ │ │ ├── play.png │ │ │ ├── pre.png │ │ │ └── volume.png │ │ ├── TreeCheckBox.png │ │ ├── TreeIcon.png │ │ ├── Tulips.png │ │ ├── animode.png │ │ ├── apng_haha.png │ │ ├── appledock │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ ├── 9.png │ │ │ ├── bk.png │ │ │ └── bk1.png │ │ ├── avatar.png │ │ ├── bk_shadow.png │ │ ├── btn_catetory.png │ │ ├── btn_expand.png │ │ ├── btn_menu.png │ │ ├── btn_skin.png │ │ ├── btn_skin1.png │ │ ├── busy1.png │ │ ├── camera_capture.cur │ │ ├── chromeTabClose.png │ │ ├── chromeTabNew.png │ │ ├── coin.png │ │ ├── contacts.png │ │ ├── girl.png │ │ ├── group.png │ │ ├── horse.gif │ │ ├── hscrollbar.png │ │ ├── icon │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── button_install.png │ │ │ └── star_green.png │ │ ├── icons.png │ │ ├── img_busy.png │ │ ├── img_logo.ico │ │ ├── img_menu_bg.png │ │ ├── item_bk.png │ │ ├── lcex_header.png │ │ ├── lcex_header_arrow.png │ │ ├── lcex_selectrange.png │ │ ├── love.png │ │ ├── mask.png │ │ ├── menuborder.png │ │ ├── menuskin.png │ │ ├── message.png │ │ ├── page_icons.png │ │ ├── penguin.gif │ │ ├── propswitch.png │ │ ├── small_icons.png │ │ ├── soui.png │ │ ├── tab_common.png │ │ ├── tab_left.png │ │ ├── tab_left_splitter.png │ │ ├── tab_main.png │ │ ├── thDKT76T9X.png │ │ ├── tip_bg.png │ │ ├── vscrollbar.png │ │ ├── webbtn_back.png │ │ ├── webbtn_forward.png │ │ ├── webbtn_refresh.png │ │ └── win.gif │ ├── img.calendar2 │ │ ├── button_radio_aio.png │ │ ├── cal_arrow_left.png │ │ ├── cal_arrow_right.png │ │ ├── cal_day_skin.png │ │ ├── gradient_1px.png │ │ ├── skin_btn_curve.png │ │ └── skin_btn_semiarc.png │ ├── img.clock │ │ ├── background.png │ │ ├── pointer_hour.png │ │ ├── pointer_minute.png │ │ └── pointer_second.png │ ├── lua │ │ └── test.lua │ ├── rtf │ │ └── RTF测试.rtf │ ├── svg │ │ └── tiger.svg │ ├── translation files │ │ └── lang_cn.xml │ ├── uidef │ │ └── init.xml │ ├── uires.idx │ ├── valueAni │ │ ├── alpha.xml │ │ └── color.xml │ ├── values │ │ ├── color.xml │ │ ├── skin.xml │ │ ├── string.xml │ │ └── template.xml │ └── xml │ │ ├── calendar.xml │ │ ├── dlg_formatmsg.xml │ │ ├── dlg_main.xml │ │ ├── dlg_set_skin.xml │ │ ├── dlg_skiatext.xml │ │ ├── dlg_skinset.xml │ │ ├── dlg_tip.xml │ │ ├── dlg_wrap_content.xml │ │ ├── love.xml │ │ ├── menu_lv.xml │ │ ├── menu_test.xml │ │ ├── menuex_test.xml │ │ ├── page_about.xml │ │ ├── page_ani3.xml │ │ ├── page_animator.xml │ │ ├── page_ctrls.xml │ │ ├── page_layout.xml │ │ ├── page_misc.xml │ │ ├── page_script.xml │ │ ├── page_skia.xml │ │ ├── page_treeview.xml │ │ ├── page_webkit.xml │ │ └── treectrl.xml └── wtlhelper │ └── whwindow.h ├── demo_com.pri ├── doc ├── FAQ.txt ├── SOUI属性手册.chm ├── SOUI用户使用手册.pdf ├── Soui属性列表.html ├── build.md ├── cmake │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ └── 07.png ├── demo_png │ ├── souidemo1.png │ └── souidemo2.png ├── logo.png ├── soui 的静态编译.pdf └── soui属性列表.xml ├── license.txt ├── products.md ├── soui-sys-resource ├── CMakeLists.txt ├── resource.h ├── soui-sys-resource.pro ├── soui-sys-resource.rc ├── soui-sys-resource.vcproj ├── theme_sys_res.rc2 └── theme_sys_res │ ├── sys_Tree_toggle.png │ ├── sys_border.png │ ├── sys_btn_close.png │ ├── sys_btn_maximize.png │ ├── sys_btn_minimize.png │ ├── sys_btn_next.png │ ├── sys_btn_prev.png │ ├── sys_btn_restore.png │ ├── sys_checkbox.png │ ├── sys_dropbtn.png │ ├── sys_focus_checkbox.png │ ├── sys_focus_radio.png │ ├── sys_header.png │ ├── sys_icons.png │ ├── sys_menu_arrow.png │ ├── sys_menu_border.png │ ├── sys_menu_check.png │ ├── sys_menu_sep.png │ ├── sys_menu_skin.png │ ├── sys_prog_bar.png │ ├── sys_prog_bkgnd.png │ ├── sys_radio.png │ ├── sys_scrollbar.png │ ├── sys_slider_thumb.png │ ├── sys_spin_down.png │ ├── sys_spin_up.png │ ├── sys_split_horz.png │ ├── sys_split_vert.png │ ├── sys_tab_page.png │ ├── sys_tree_checkbox.png │ ├── sys_tree_lines.png │ ├── sys_vert_prog_bar.png │ ├── sys_vert_prog_bkgnd.png │ ├── sys_wnd_bkgnd.png │ ├── sys_xml_editmenu.xml │ ├── sys_xml_msgbox.xml │ └── sys_xml_skin.xml ├── soui.08.sln ├── soui.pro ├── souiprosubdir.xml ├── third-part ├── 7z │ ├── 7z.pro │ ├── 7z.vcproj │ ├── Asm │ │ ├── arm │ │ │ └── 7zCrcOpt.asm │ │ └── x86 │ │ │ ├── 7zAsm.asm │ │ │ ├── 7zCrcOpt.asm │ │ │ ├── AesOpt.asm │ │ │ └── XzCrc64Opt.asm │ ├── C │ │ ├── 7z.h │ │ ├── 7zAlloc.c │ │ ├── 7zAlloc.h │ │ ├── 7zArcIn.c │ │ ├── 7zBuf.c │ │ ├── 7zBuf.h │ │ ├── 7zBuf2.c │ │ ├── 7zCrc.c │ │ ├── 7zCrc.h │ │ ├── 7zCrcOpt.c │ │ ├── 7zDec.c │ │ ├── 7zFile.c │ │ ├── 7zFile.h │ │ ├── 7zStream.c │ │ ├── 7zTypes.h │ │ ├── 7zVersion.h │ │ ├── 7zVersion.rc │ │ ├── Aes.c │ │ ├── Aes.h │ │ ├── AesOpt.c │ │ ├── Alloc.c │ │ ├── Alloc.h │ │ ├── Bcj2.c │ │ ├── Bcj2.h │ │ ├── Bcj2Enc.c │ │ ├── Blake2.h │ │ ├── Blake2s.c │ │ ├── Bra.c │ │ ├── Bra.h │ │ ├── Bra86.c │ │ ├── BraIA64.c │ │ ├── BwtSort.c │ │ ├── BwtSort.h │ │ ├── Compiler.h │ │ ├── CpuArch.c │ │ ├── CpuArch.h │ │ ├── Delta.c │ │ ├── Delta.h │ │ ├── DllSecur.c │ │ ├── DllSecur.h │ │ ├── HuffEnc.c │ │ ├── HuffEnc.h │ │ ├── LzFind.c │ │ ├── LzFind.h │ │ ├── LzFindMt.c │ │ ├── LzFindMt.h │ │ ├── LzHash.h │ │ ├── Lzma2Dec.c │ │ ├── Lzma2Dec.h │ │ ├── Lzma2Enc.c │ │ ├── Lzma2Enc.h │ │ ├── Lzma86.h │ │ ├── Lzma86Dec.c │ │ ├── Lzma86Enc.c │ │ ├── LzmaDec.c │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.c │ │ ├── LzmaEnc.h │ │ ├── LzmaLib.c │ │ ├── LzmaLib.h │ │ ├── MtCoder.c │ │ ├── MtCoder.h │ │ ├── Ppmd.h │ │ ├── Ppmd7.c │ │ ├── Ppmd7.h │ │ ├── Ppmd7Dec.c │ │ ├── Ppmd7Enc.c │ │ ├── Ppmd8.c │ │ ├── Ppmd8.h │ │ ├── Ppmd8Dec.c │ │ ├── Ppmd8Enc.c │ │ ├── Precomp.h │ │ ├── RotateDefs.h │ │ ├── Sha1.c │ │ ├── Sha1.h │ │ ├── Sha256.c │ │ ├── Sha256.h │ │ ├── Sort.c │ │ ├── Sort.h │ │ ├── Threads.c │ │ ├── Threads.h │ │ ├── Util │ │ │ ├── 7z │ │ │ │ ├── 7z.dsp │ │ │ │ ├── 7z.dsw │ │ │ │ ├── 7zMain.c │ │ │ │ ├── Precomp.c │ │ │ │ ├── Precomp.h │ │ │ │ ├── makefile │ │ │ │ └── makefile.gcc │ │ │ ├── 7zipInstall │ │ │ │ ├── 7zip.ico │ │ │ │ ├── 7zipInstall.c │ │ │ │ ├── 7zipInstall.dsp │ │ │ │ ├── 7zipInstall.dsw │ │ │ │ ├── 7zipInstall.manifest │ │ │ │ ├── Precomp.c │ │ │ │ ├── Precomp.h │ │ │ │ ├── makefile │ │ │ │ ├── resource.h │ │ │ │ └── resource.rc │ │ │ ├── 7zipUninstall │ │ │ │ ├── 7zipUninstall.c │ │ │ │ ├── 7zipUninstall.dsp │ │ │ │ ├── 7zipUninstall.dsw │ │ │ │ ├── 7zipUninstall.ico │ │ │ │ ├── 7zipUninstall.manifest │ │ │ │ ├── Precomp.c │ │ │ │ ├── Precomp.h │ │ │ │ ├── makefile │ │ │ │ ├── resource.h │ │ │ │ └── resource.rc │ │ │ ├── Lzma │ │ │ │ ├── LzmaUtil.c │ │ │ │ ├── LzmaUtil.dsp │ │ │ │ ├── LzmaUtil.dsw │ │ │ │ ├── makefile │ │ │ │ └── makefile.gcc │ │ │ ├── LzmaLib │ │ │ │ ├── LzmaLib.def │ │ │ │ ├── LzmaLib.dsp │ │ │ │ ├── LzmaLib.dsw │ │ │ │ ├── LzmaLibExports.c │ │ │ │ ├── makefile │ │ │ │ └── resource.rc │ │ │ └── SfxSetup │ │ │ │ ├── Precomp.c │ │ │ │ ├── Precomp.h │ │ │ │ ├── SfxSetup.c │ │ │ │ ├── SfxSetup.dsp │ │ │ │ ├── SfxSetup.dsw │ │ │ │ ├── makefile │ │ │ │ ├── makefile_con │ │ │ │ ├── resource.rc │ │ │ │ └── setup.ico │ │ ├── Xz.c │ │ ├── Xz.h │ │ ├── XzCrc64.c │ │ ├── XzCrc64.h │ │ ├── XzCrc64Opt.c │ │ ├── XzDec.c │ │ ├── XzEnc.c │ │ ├── XzEnc.h │ │ └── XzIn.c │ ├── CMakeLists.txt │ ├── CPP │ │ ├── 7zip │ │ │ ├── 7zip.mak │ │ │ ├── Aes.mak │ │ │ ├── Archive │ │ │ │ ├── 7z │ │ │ │ │ ├── 7z.dsp │ │ │ │ │ ├── 7z.dsw │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ │ ├── 7zDecode.cpp │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ ├── 7zEncode.cpp │ │ │ │ │ ├── 7zEncode.h │ │ │ │ │ ├── 7zExtract.cpp │ │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ │ ├── 7zHandler.cpp │ │ │ │ │ ├── 7zHandler.h │ │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ │ ├── 7zHeader.cpp │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ ├── 7zIn.cpp │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ ├── 7zOut.cpp │ │ │ │ │ ├── 7zOut.h │ │ │ │ │ ├── 7zProperties.cpp │ │ │ │ │ ├── 7zProperties.h │ │ │ │ │ ├── 7zRegister.cpp │ │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ │ ├── 7zSpecStream.h │ │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ │ ├── 7zUpdate.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── ApmHandler.cpp │ │ │ │ ├── ArHandler.cpp │ │ │ │ ├── Archive.def │ │ │ │ ├── Archive2.def │ │ │ │ ├── ArchiveExports.cpp │ │ │ │ ├── ArjHandler.cpp │ │ │ │ ├── Bz2Handler.cpp │ │ │ │ ├── Cab │ │ │ │ │ ├── CabBlockInStream.cpp │ │ │ │ │ ├── CabBlockInStream.h │ │ │ │ │ ├── CabHandler.cpp │ │ │ │ │ ├── CabHandler.h │ │ │ │ │ ├── CabHeader.cpp │ │ │ │ │ ├── CabHeader.h │ │ │ │ │ ├── CabIn.cpp │ │ │ │ │ ├── CabIn.h │ │ │ │ │ ├── CabItem.h │ │ │ │ │ └── CabRegister.cpp │ │ │ │ ├── Chm │ │ │ │ │ ├── ChmHandler.cpp │ │ │ │ │ ├── ChmHandler.h │ │ │ │ │ ├── ChmIn.cpp │ │ │ │ │ └── ChmIn.h │ │ │ │ ├── ComHandler.cpp │ │ │ │ ├── Common │ │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ │ ├── CoderMixer2.h │ │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ │ ├── DummyOutStream.h │ │ │ │ │ ├── FindSignature.cpp │ │ │ │ │ ├── FindSignature.h │ │ │ │ │ ├── HandlerOut.cpp │ │ │ │ │ ├── HandlerOut.h │ │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ │ ├── ItemNameUtils.h │ │ │ │ │ ├── MultiStream.cpp │ │ │ │ │ ├── MultiStream.h │ │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ │ ├── OutStreamWithSha1.cpp │ │ │ │ │ ├── OutStreamWithSha1.h │ │ │ │ │ ├── ParseProperties.cpp │ │ │ │ │ └── ParseProperties.h │ │ │ │ ├── CpioHandler.cpp │ │ │ │ ├── CramfsHandler.cpp │ │ │ │ ├── DeflateProps.cpp │ │ │ │ ├── DeflateProps.h │ │ │ │ ├── DllExports.cpp │ │ │ │ ├── DllExports2.cpp │ │ │ │ ├── DmgHandler.cpp │ │ │ │ ├── ElfHandler.cpp │ │ │ │ ├── ExtHandler.cpp │ │ │ │ ├── FatHandler.cpp │ │ │ │ ├── FlvHandler.cpp │ │ │ │ ├── GptHandler.cpp │ │ │ │ ├── GzHandler.cpp │ │ │ │ ├── HandlerCont.cpp │ │ │ │ ├── HandlerCont.h │ │ │ │ ├── HfsHandler.cpp │ │ │ │ ├── IArchive.h │ │ │ │ ├── IhexHandler.cpp │ │ │ │ ├── Iso │ │ │ │ │ ├── IsoHandler.cpp │ │ │ │ │ ├── IsoHandler.h │ │ │ │ │ ├── IsoHeader.cpp │ │ │ │ │ ├── IsoHeader.h │ │ │ │ │ ├── IsoIn.cpp │ │ │ │ │ ├── IsoIn.h │ │ │ │ │ ├── IsoItem.h │ │ │ │ │ └── IsoRegister.cpp │ │ │ │ ├── LzhHandler.cpp │ │ │ │ ├── LzmaHandler.cpp │ │ │ │ ├── MachoHandler.cpp │ │ │ │ ├── MbrHandler.cpp │ │ │ │ ├── MslzHandler.cpp │ │ │ │ ├── MubHandler.cpp │ │ │ │ ├── Nsis │ │ │ │ │ ├── NsisDecode.cpp │ │ │ │ │ ├── NsisDecode.h │ │ │ │ │ ├── NsisHandler.cpp │ │ │ │ │ ├── NsisHandler.h │ │ │ │ │ ├── NsisIn.cpp │ │ │ │ │ ├── NsisIn.h │ │ │ │ │ └── NsisRegister.cpp │ │ │ │ ├── NtfsHandler.cpp │ │ │ │ ├── PeHandler.cpp │ │ │ │ ├── PpmdHandler.cpp │ │ │ │ ├── QcowHandler.cpp │ │ │ │ ├── Rar │ │ │ │ │ ├── Rar5Handler.cpp │ │ │ │ │ ├── Rar5Handler.h │ │ │ │ │ ├── RarHandler.cpp │ │ │ │ │ ├── RarHandler.h │ │ │ │ │ ├── RarHeader.h │ │ │ │ │ ├── RarItem.h │ │ │ │ │ └── RarVol.h │ │ │ │ ├── RpmHandler.cpp │ │ │ │ ├── SplitHandler.cpp │ │ │ │ ├── SquashfsHandler.cpp │ │ │ │ ├── SwfHandler.cpp │ │ │ │ ├── Tar │ │ │ │ │ ├── TarHandler.cpp │ │ │ │ │ ├── TarHandler.h │ │ │ │ │ ├── TarHandlerOut.cpp │ │ │ │ │ ├── TarHeader.cpp │ │ │ │ │ ├── TarHeader.h │ │ │ │ │ ├── TarIn.cpp │ │ │ │ │ ├── TarIn.h │ │ │ │ │ ├── TarItem.h │ │ │ │ │ ├── TarOut.cpp │ │ │ │ │ ├── TarOut.h │ │ │ │ │ ├── TarRegister.cpp │ │ │ │ │ ├── TarUpdate.cpp │ │ │ │ │ └── TarUpdate.h │ │ │ │ ├── Udf │ │ │ │ │ ├── UdfHandler.cpp │ │ │ │ │ ├── UdfHandler.h │ │ │ │ │ ├── UdfIn.cpp │ │ │ │ │ └── UdfIn.h │ │ │ │ ├── UefiHandler.cpp │ │ │ │ ├── VdiHandler.cpp │ │ │ │ ├── VhdHandler.cpp │ │ │ │ ├── VmdkHandler.cpp │ │ │ │ ├── Wim │ │ │ │ │ ├── WimHandler.cpp │ │ │ │ │ ├── WimHandler.h │ │ │ │ │ ├── WimHandlerOut.cpp │ │ │ │ │ ├── WimIn.cpp │ │ │ │ │ ├── WimIn.h │ │ │ │ │ └── WimRegister.cpp │ │ │ │ ├── XarHandler.cpp │ │ │ │ ├── XzHandler.cpp │ │ │ │ ├── XzHandler.h │ │ │ │ ├── ZHandler.cpp │ │ │ │ ├── Zip │ │ │ │ │ ├── ZipAddCommon.cpp │ │ │ │ │ ├── ZipAddCommon.h │ │ │ │ │ ├── ZipCompressionMode.h │ │ │ │ │ ├── ZipHandler.cpp │ │ │ │ │ ├── ZipHandler.h │ │ │ │ │ ├── ZipHandlerOut.cpp │ │ │ │ │ ├── ZipHeader.h │ │ │ │ │ ├── ZipIn.cpp │ │ │ │ │ ├── ZipIn.h │ │ │ │ │ ├── ZipItem.cpp │ │ │ │ │ ├── ZipItem.h │ │ │ │ │ ├── ZipOut.cpp │ │ │ │ │ ├── ZipOut.h │ │ │ │ │ ├── ZipRegister.cpp │ │ │ │ │ ├── ZipUpdate.cpp │ │ │ │ │ └── ZipUpdate.h │ │ │ │ └── makefile │ │ │ ├── Asm.mak │ │ │ ├── Common │ │ │ │ ├── CWrappers.cpp │ │ │ │ ├── CWrappers.h │ │ │ │ ├── CreateCoder.cpp │ │ │ │ ├── CreateCoder.h │ │ │ │ ├── FilePathAutoRename.cpp │ │ │ │ ├── FilePathAutoRename.h │ │ │ │ ├── FileStreams.cpp │ │ │ │ ├── FileStreams.h │ │ │ │ ├── FilterCoder.cpp │ │ │ │ ├── FilterCoder.h │ │ │ │ ├── InBuffer.cpp │ │ │ │ ├── InBuffer.h │ │ │ │ ├── InOutTempBuffer.cpp │ │ │ │ ├── InOutTempBuffer.h │ │ │ │ ├── LimitedStreams.cpp │ │ │ │ ├── LimitedStreams.h │ │ │ │ ├── LockedStream.cpp │ │ │ │ ├── LockedStream.h │ │ │ │ ├── MemBlocks.cpp │ │ │ │ ├── MemBlocks.h │ │ │ │ ├── MethodId.cpp │ │ │ │ ├── MethodId.h │ │ │ │ ├── MethodProps.cpp │ │ │ │ ├── MethodProps.h │ │ │ │ ├── OffsetStream.cpp │ │ │ │ ├── OffsetStream.h │ │ │ │ ├── OutBuffer.cpp │ │ │ │ ├── OutBuffer.h │ │ │ │ ├── OutMemStream.cpp │ │ │ │ ├── OutMemStream.h │ │ │ │ ├── ProgressMt.cpp │ │ │ │ ├── ProgressMt.h │ │ │ │ ├── ProgressUtils.cpp │ │ │ │ ├── ProgressUtils.h │ │ │ │ ├── PropId.cpp │ │ │ │ ├── RegisterArc.h │ │ │ │ ├── RegisterCodec.h │ │ │ │ ├── StreamBinder.cpp │ │ │ │ ├── StreamBinder.h │ │ │ │ ├── StreamObjects.cpp │ │ │ │ ├── StreamObjects.h │ │ │ │ ├── StreamUtils.cpp │ │ │ │ ├── StreamUtils.h │ │ │ │ ├── UniqBlocks.cpp │ │ │ │ ├── UniqBlocks.h │ │ │ │ ├── VirtThread.cpp │ │ │ │ └── VirtThread.h │ │ │ ├── Compress │ │ │ │ ├── BZip2Const.h │ │ │ │ ├── BZip2Crc.cpp │ │ │ │ ├── BZip2Crc.h │ │ │ │ ├── BZip2Decoder.cpp │ │ │ │ ├── BZip2Decoder.h │ │ │ │ ├── BZip2Encoder.cpp │ │ │ │ ├── BZip2Encoder.h │ │ │ │ ├── BZip2Register.cpp │ │ │ │ ├── Bcj2Coder.cpp │ │ │ │ ├── Bcj2Coder.h │ │ │ │ ├── Bcj2Register.cpp │ │ │ │ ├── BcjCoder.cpp │ │ │ │ ├── BcjCoder.h │ │ │ │ ├── BcjRegister.cpp │ │ │ │ ├── BitlDecoder.cpp │ │ │ │ ├── BitlDecoder.h │ │ │ │ ├── BitlEncoder.h │ │ │ │ ├── BitmDecoder.h │ │ │ │ ├── BitmEncoder.h │ │ │ │ ├── BranchMisc.cpp │ │ │ │ ├── BranchMisc.h │ │ │ │ ├── BranchRegister.cpp │ │ │ │ ├── ByteSwap.cpp │ │ │ │ ├── Codec.def │ │ │ │ ├── CodecExports.cpp │ │ │ │ ├── CopyCoder.cpp │ │ │ │ ├── CopyCoder.h │ │ │ │ ├── CopyRegister.cpp │ │ │ │ ├── Deflate64Register.cpp │ │ │ │ ├── DeflateConst.h │ │ │ │ ├── DeflateDecoder.cpp │ │ │ │ ├── DeflateDecoder.h │ │ │ │ ├── DeflateEncoder.cpp │ │ │ │ ├── DeflateEncoder.h │ │ │ │ ├── DeflateRegister.cpp │ │ │ │ ├── DeltaFilter.cpp │ │ │ │ ├── DllExports2Compress.cpp │ │ │ │ ├── DllExportsCompress.cpp │ │ │ │ ├── HuffmanDecoder.h │ │ │ │ ├── ImplodeDecoder.cpp │ │ │ │ ├── ImplodeDecoder.h │ │ │ │ ├── ImplodeHuffmanDecoder.cpp │ │ │ │ ├── ImplodeHuffmanDecoder.h │ │ │ │ ├── LzOutWindow.cpp │ │ │ │ ├── LzOutWindow.h │ │ │ │ ├── LzhDecoder.cpp │ │ │ │ ├── LzhDecoder.h │ │ │ │ ├── Lzma2Decoder.cpp │ │ │ │ ├── Lzma2Decoder.h │ │ │ │ ├── Lzma2Encoder.cpp │ │ │ │ ├── Lzma2Encoder.h │ │ │ │ ├── Lzma2Register.cpp │ │ │ │ ├── LzmaDecoder.cpp │ │ │ │ ├── LzmaDecoder.h │ │ │ │ ├── LzmaEncoder.cpp │ │ │ │ ├── LzmaEncoder.h │ │ │ │ ├── LzmaRegister.cpp │ │ │ │ ├── LzmsDecoder.cpp │ │ │ │ ├── LzmsDecoder.h │ │ │ │ ├── Lzx.h │ │ │ │ ├── LzxDecoder.cpp │ │ │ │ ├── LzxDecoder.h │ │ │ │ ├── Mtf8.h │ │ │ │ ├── PpmdDecoder.cpp │ │ │ │ ├── PpmdDecoder.h │ │ │ │ ├── PpmdEncoder.cpp │ │ │ │ ├── PpmdEncoder.h │ │ │ │ ├── PpmdRegister.cpp │ │ │ │ ├── PpmdZip.cpp │ │ │ │ ├── PpmdZip.h │ │ │ │ ├── QuantumDecoder.cpp │ │ │ │ ├── QuantumDecoder.h │ │ │ │ ├── Rar1Decoder.cpp │ │ │ │ ├── Rar1Decoder.h │ │ │ │ ├── Rar2Decoder.cpp │ │ │ │ ├── Rar2Decoder.h │ │ │ │ ├── Rar3Decoder.cpp │ │ │ │ ├── Rar3Decoder.h │ │ │ │ ├── Rar3Vm.cpp │ │ │ │ ├── Rar3Vm.h │ │ │ │ ├── Rar5Decoder.cpp │ │ │ │ ├── Rar5Decoder.h │ │ │ │ ├── RarCodecsRegister.cpp │ │ │ │ ├── ShrinkDecoder.cpp │ │ │ │ ├── ShrinkDecoder.h │ │ │ │ ├── XpressDecoder.cpp │ │ │ │ ├── XpressDecoder.h │ │ │ │ ├── ZDecoder.cpp │ │ │ │ ├── ZDecoder.h │ │ │ │ ├── ZlibDecoder.cpp │ │ │ │ ├── ZlibDecoder.h │ │ │ │ ├── ZlibEncoder.cpp │ │ │ │ ├── ZlibEncoder.h │ │ │ │ └── makefile │ │ │ ├── Crc.mak │ │ │ ├── Crc64.mak │ │ │ ├── Crypto │ │ │ │ ├── 7zAes.cpp │ │ │ │ ├── 7zAes.h │ │ │ │ ├── 7zAesRegister.cpp │ │ │ │ ├── Codec.def │ │ │ │ ├── HmacSha1.cpp │ │ │ │ ├── HmacSha1.h │ │ │ │ ├── HmacSha256.cpp │ │ │ │ ├── HmacSha256.h │ │ │ │ ├── MyAes.cpp │ │ │ │ ├── MyAes.h │ │ │ │ ├── MyAesReg.cpp │ │ │ │ ├── Pbkdf2HmacSha1.cpp │ │ │ │ ├── Pbkdf2HmacSha1.h │ │ │ │ ├── RandGen.cpp │ │ │ │ ├── RandGen.h │ │ │ │ ├── Rar20Crypto.cpp │ │ │ │ ├── Rar20Crypto.h │ │ │ │ ├── Rar5Aes.cpp │ │ │ │ ├── Rar5Aes.h │ │ │ │ ├── RarAes.cpp │ │ │ │ ├── RarAes.h │ │ │ │ ├── Sha1Cls.h │ │ │ │ ├── WzAes.cpp │ │ │ │ ├── WzAes.h │ │ │ │ ├── ZipCrypto.cpp │ │ │ │ ├── ZipCrypto.h │ │ │ │ ├── ZipStrong.cpp │ │ │ │ └── ZipStrong.h │ │ │ ├── GuiCommon.rc │ │ │ ├── Guid.txt │ │ │ ├── ICoder.h │ │ │ ├── IDecl.h │ │ │ ├── IPassword.h │ │ │ ├── IProgress.h │ │ │ ├── IStream.h │ │ │ ├── MyVersion.h │ │ │ ├── MyVersionInfo.rc │ │ │ ├── PropID.h │ │ │ ├── SubBuild.mak │ │ │ ├── UI │ │ │ │ ├── Agent │ │ │ │ │ ├── Agent.cpp │ │ │ │ │ ├── Agent.h │ │ │ │ │ ├── AgentOut.cpp │ │ │ │ │ ├── AgentProxy.cpp │ │ │ │ │ ├── AgentProxy.h │ │ │ │ │ ├── ArchiveFolder.cpp │ │ │ │ │ ├── ArchiveFolderOpen.cpp │ │ │ │ │ ├── ArchiveFolderOut.cpp │ │ │ │ │ ├── IFolderArchive.h │ │ │ │ │ ├── UpdateCallbackAgent.cpp │ │ │ │ │ └── UpdateCallbackAgent.h │ │ │ │ ├── Client7z │ │ │ │ │ ├── Client7z.cpp │ │ │ │ │ ├── Client7z.dsp │ │ │ │ │ ├── Client7z.dsw │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── Common │ │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ │ ├── ArchiveName.cpp │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ │ ├── Bench.cpp │ │ │ │ │ ├── Bench.h │ │ │ │ │ ├── CompressCall.cpp │ │ │ │ │ ├── CompressCall.h │ │ │ │ │ ├── CompressCall2.cpp │ │ │ │ │ ├── DefaultName.cpp │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ ├── DirItem.h │ │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ │ ├── EnumDirItems.h │ │ │ │ │ ├── ExitCode.h │ │ │ │ │ ├── Extract.cpp │ │ │ │ │ ├── Extract.h │ │ │ │ │ ├── ExtractMode.h │ │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ ├── HashCalc.cpp │ │ │ │ │ ├── HashCalc.h │ │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ │ ├── LoadCodecs.h │ │ │ │ │ ├── OpenArchive.cpp │ │ │ │ │ ├── OpenArchive.h │ │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ │ ├── PropIDUtils.h │ │ │ │ │ ├── Property.h │ │ │ │ │ ├── SetProperties.cpp │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ ├── SortUtils.cpp │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ ├── Update.cpp │ │ │ │ │ ├── Update.h │ │ │ │ │ ├── UpdateAction.cpp │ │ │ │ │ ├── UpdateAction.h │ │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ │ ├── UpdateCallback.h │ │ │ │ │ ├── UpdatePair.cpp │ │ │ │ │ ├── UpdatePair.h │ │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ │ ├── UpdateProduce.h │ │ │ │ │ ├── WorkDir.cpp │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ ├── ZipRegistry.cpp │ │ │ │ │ └── ZipRegistry.h │ │ │ │ ├── Console │ │ │ │ │ ├── BenchCon.cpp │ │ │ │ │ ├── BenchCon.h │ │ │ │ │ ├── Console.dsp │ │ │ │ │ ├── Console.dsw │ │ │ │ │ ├── Console.mak │ │ │ │ │ ├── ConsoleClose.cpp │ │ │ │ │ ├── ConsoleClose.h │ │ │ │ │ ├── ExtractCallbackConsole.cpp │ │ │ │ │ ├── ExtractCallbackConsole.h │ │ │ │ │ ├── HashCon.cpp │ │ │ │ │ ├── HashCon.h │ │ │ │ │ ├── List.cpp │ │ │ │ │ ├── List.h │ │ │ │ │ ├── Main.cpp │ │ │ │ │ ├── MainAr.cpp │ │ │ │ │ ├── OpenCallbackConsole.cpp │ │ │ │ │ ├── OpenCallbackConsole.h │ │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ │ ├── PercentPrinter.h │ │ │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ │ │ ├── UpdateCallbackConsole.h │ │ │ │ │ ├── UserInputUtils.cpp │ │ │ │ │ ├── UserInputUtils.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── Explorer │ │ │ │ │ ├── 7-zip.dll.manifest │ │ │ │ │ ├── ContextMenu.cpp │ │ │ │ │ ├── ContextMenu.h │ │ │ │ │ ├── ContextMenuFlags.h │ │ │ │ │ ├── DllExportsExplorer.cpp │ │ │ │ │ ├── Explorer.def │ │ │ │ │ ├── Explorer.dsp │ │ │ │ │ ├── Explorer.dsw │ │ │ │ │ ├── MenuLogo.bmp │ │ │ │ │ ├── MyMessages.cpp │ │ │ │ │ ├── MyMessages.h │ │ │ │ │ ├── RegistryContextMenu.cpp │ │ │ │ │ ├── RegistryContextMenu.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── resource.rc │ │ │ │ │ └── resource2.rc │ │ │ │ ├── Far │ │ │ │ │ ├── ExtractEngine.cpp │ │ │ │ │ ├── ExtractEngine.h │ │ │ │ │ ├── Far.cpp │ │ │ │ │ ├── Far.def │ │ │ │ │ ├── Far.dsp │ │ │ │ │ ├── Far.dsw │ │ │ │ │ ├── FarPlugin.h │ │ │ │ │ ├── FarUtils.cpp │ │ │ │ │ ├── FarUtils.h │ │ │ │ │ ├── Messages.h │ │ │ │ │ ├── OverwriteDialogFar.cpp │ │ │ │ │ ├── OverwriteDialogFar.h │ │ │ │ │ ├── Plugin.cpp │ │ │ │ │ ├── Plugin.h │ │ │ │ │ ├── PluginCommon.cpp │ │ │ │ │ ├── PluginDelete.cpp │ │ │ │ │ ├── PluginRead.cpp │ │ │ │ │ ├── PluginWrite.cpp │ │ │ │ │ ├── ProgressBox.cpp │ │ │ │ │ ├── ProgressBox.h │ │ │ │ │ ├── UpdateCallbackFar.cpp │ │ │ │ │ ├── UpdateCallbackFar.h │ │ │ │ │ ├── makefile │ │ │ │ │ └── resource.rc │ │ │ │ ├── FileManager │ │ │ │ │ ├── 7zFM.exe.manifest │ │ │ │ │ ├── 7zipLogo.ico │ │ │ │ │ ├── AboutDialog.cpp │ │ │ │ │ ├── AboutDialog.h │ │ │ │ │ ├── AboutDialog.rc │ │ │ │ │ ├── AboutDialogRes.h │ │ │ │ │ ├── Add.bmp │ │ │ │ │ ├── Add2.bmp │ │ │ │ │ ├── AltStreamsFolder.cpp │ │ │ │ │ ├── AltStreamsFolder.h │ │ │ │ │ ├── App.cpp │ │ │ │ │ ├── App.h │ │ │ │ │ ├── AppState.h │ │ │ │ │ ├── BrowseDialog.cpp │ │ │ │ │ ├── BrowseDialog.h │ │ │ │ │ ├── BrowseDialog.rc │ │ │ │ │ ├── BrowseDialogRes.h │ │ │ │ │ ├── ClassDefs.cpp │ │ │ │ │ ├── ComboDialog.cpp │ │ │ │ │ ├── ComboDialog.h │ │ │ │ │ ├── ComboDialog.rc │ │ │ │ │ ├── ComboDialogRes.h │ │ │ │ │ ├── Copy.bmp │ │ │ │ │ ├── Copy2.bmp │ │ │ │ │ ├── CopyDialog.cpp │ │ │ │ │ ├── CopyDialog.h │ │ │ │ │ ├── CopyDialog.rc │ │ │ │ │ ├── CopyDialogRes.h │ │ │ │ │ ├── Delete.bmp │ │ │ │ │ ├── Delete2.bmp │ │ │ │ │ ├── DialogSize.h │ │ │ │ │ ├── EditPage.cpp │ │ │ │ │ ├── EditPage.h │ │ │ │ │ ├── EditPage.rc │ │ │ │ │ ├── EditPage2.rc │ │ │ │ │ ├── EditPageRes.h │ │ │ │ │ ├── EnumFormatEtc.cpp │ │ │ │ │ ├── EnumFormatEtc.h │ │ │ │ │ ├── Extract.bmp │ │ │ │ │ ├── Extract2.bmp │ │ │ │ │ ├── ExtractCallback.cpp │ │ │ │ │ ├── ExtractCallback.h │ │ │ │ │ ├── FM.cpp │ │ │ │ │ ├── FM.dsp │ │ │ │ │ ├── FM.dsw │ │ │ │ │ ├── FM.ico │ │ │ │ │ ├── FM.mak │ │ │ │ │ ├── FSDrives.cpp │ │ │ │ │ ├── FSDrives.h │ │ │ │ │ ├── FSFolder.cpp │ │ │ │ │ ├── FSFolder.h │ │ │ │ │ ├── FSFolderCopy.cpp │ │ │ │ │ ├── FileFolderPluginOpen.cpp │ │ │ │ │ ├── FileFolderPluginOpen.h │ │ │ │ │ ├── FilePlugins.cpp │ │ │ │ │ ├── FilePlugins.h │ │ │ │ │ ├── FoldersPage.cpp │ │ │ │ │ ├── FoldersPage.h │ │ │ │ │ ├── FoldersPage.rc │ │ │ │ │ ├── FoldersPage2.rc │ │ │ │ │ ├── FoldersPageRes.h │ │ │ │ │ ├── FormatUtils.cpp │ │ │ │ │ ├── FormatUtils.h │ │ │ │ │ ├── HelpUtils.cpp │ │ │ │ │ ├── HelpUtils.h │ │ │ │ │ ├── IFolder.h │ │ │ │ │ ├── Info.bmp │ │ │ │ │ ├── Info2.bmp │ │ │ │ │ ├── LangPage.cpp │ │ │ │ │ ├── LangPage.h │ │ │ │ │ ├── LangPage.rc │ │ │ │ │ ├── LangPageRes.h │ │ │ │ │ ├── LangUtils.cpp │ │ │ │ │ ├── LangUtils.h │ │ │ │ │ ├── LinkDialog.cpp │ │ │ │ │ ├── LinkDialog.h │ │ │ │ │ ├── LinkDialog.rc │ │ │ │ │ ├── LinkDialogRes.h │ │ │ │ │ ├── ListViewDialog.cpp │ │ │ │ │ ├── ListViewDialog.h │ │ │ │ │ ├── ListViewDialog.rc │ │ │ │ │ ├── ListViewDialogRes.h │ │ │ │ │ ├── MenuPage.cpp │ │ │ │ │ ├── MenuPage.h │ │ │ │ │ ├── MenuPage.rc │ │ │ │ │ ├── MenuPage2.rc │ │ │ │ │ ├── MenuPageRes.h │ │ │ │ │ ├── MessagesDialog.cpp │ │ │ │ │ ├── MessagesDialog.h │ │ │ │ │ ├── MessagesDialog.rc │ │ │ │ │ ├── MessagesDialogRes.h │ │ │ │ │ ├── Move.bmp │ │ │ │ │ ├── Move2.bmp │ │ │ │ │ ├── MyCom2.h │ │ │ │ │ ├── MyLoadMenu.cpp │ │ │ │ │ ├── MyLoadMenu.h │ │ │ │ │ ├── MyWindowsNew.h │ │ │ │ │ ├── NetFolder.cpp │ │ │ │ │ ├── NetFolder.h │ │ │ │ │ ├── OpenCallback.cpp │ │ │ │ │ ├── OpenCallback.h │ │ │ │ │ ├── OptionsDialog.cpp │ │ │ │ │ ├── OverwriteDialog.cpp │ │ │ │ │ ├── OverwriteDialog.h │ │ │ │ │ ├── OverwriteDialog.rc │ │ │ │ │ ├── OverwriteDialogRes.h │ │ │ │ │ ├── Panel.cpp │ │ │ │ │ ├── Panel.h │ │ │ │ │ ├── PanelCopy.cpp │ │ │ │ │ ├── PanelCrc.cpp │ │ │ │ │ ├── PanelDrag.cpp │ │ │ │ │ ├── PanelFolderChange.cpp │ │ │ │ │ ├── PanelItemOpen.cpp │ │ │ │ │ ├── PanelItems.cpp │ │ │ │ │ ├── PanelKey.cpp │ │ │ │ │ ├── PanelListNotify.cpp │ │ │ │ │ ├── PanelMenu.cpp │ │ │ │ │ ├── PanelOperations.cpp │ │ │ │ │ ├── PanelSelect.cpp │ │ │ │ │ ├── PanelSort.cpp │ │ │ │ │ ├── PanelSplitFile.cpp │ │ │ │ │ ├── PasswordDialog.cpp │ │ │ │ │ ├── PasswordDialog.h │ │ │ │ │ ├── PasswordDialog.rc │ │ │ │ │ ├── PasswordDialogRes.h │ │ │ │ │ ├── PluginInterface.h │ │ │ │ │ ├── PluginLoader.h │ │ │ │ │ ├── ProgramLocation.cpp │ │ │ │ │ ├── ProgramLocation.h │ │ │ │ │ ├── ProgressDialog.cpp │ │ │ │ │ ├── ProgressDialog.h │ │ │ │ │ ├── ProgressDialog.rc │ │ │ │ │ ├── ProgressDialog2.cpp │ │ │ │ │ ├── ProgressDialog2.h │ │ │ │ │ ├── ProgressDialog2.rc │ │ │ │ │ ├── ProgressDialog2Res.h │ │ │ │ │ ├── ProgressDialog2a.rc │ │ │ │ │ ├── ProgressDialogRes.h │ │ │ │ │ ├── PropertyName.cpp │ │ │ │ │ ├── PropertyName.h │ │ │ │ │ ├── PropertyName.rc │ │ │ │ │ ├── PropertyNameRes.h │ │ │ │ │ ├── RegistryAssociations.cpp │ │ │ │ │ ├── RegistryAssociations.h │ │ │ │ │ ├── RegistryPlugins.cpp │ │ │ │ │ ├── RegistryPlugins.h │ │ │ │ │ ├── RegistryUtils.cpp │ │ │ │ │ ├── RegistryUtils.h │ │ │ │ │ ├── RootFolder.cpp │ │ │ │ │ ├── RootFolder.h │ │ │ │ │ ├── SettingsPage.cpp │ │ │ │ │ ├── SettingsPage.h │ │ │ │ │ ├── SettingsPage.rc │ │ │ │ │ ├── SettingsPage2.rc │ │ │ │ │ ├── SettingsPageRes.h │ │ │ │ │ ├── SplitDialog.cpp │ │ │ │ │ ├── SplitDialog.h │ │ │ │ │ ├── SplitDialog.rc │ │ │ │ │ ├── SplitDialogRes.h │ │ │ │ │ ├── SplitUtils.cpp │ │ │ │ │ ├── SplitUtils.h │ │ │ │ │ ├── StringUtils.cpp │ │ │ │ │ ├── StringUtils.h │ │ │ │ │ ├── SysIconUtils.cpp │ │ │ │ │ ├── SysIconUtils.h │ │ │ │ │ ├── SystemPage.cpp │ │ │ │ │ ├── SystemPage.h │ │ │ │ │ ├── SystemPage.rc │ │ │ │ │ ├── SystemPageRes.h │ │ │ │ │ ├── Test.bmp │ │ │ │ │ ├── Test2.bmp │ │ │ │ │ ├── TextPairs.cpp │ │ │ │ │ ├── TextPairs.h │ │ │ │ │ ├── UpdateCallback100.cpp │ │ │ │ │ ├── UpdateCallback100.h │ │ │ │ │ ├── ViewSettings.cpp │ │ │ │ │ ├── ViewSettings.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── resource.rc │ │ │ │ │ ├── resourceGui.h │ │ │ │ │ └── resourceGui.rc │ │ │ │ ├── GUI │ │ │ │ │ ├── 7zG.exe.manifest │ │ │ │ │ ├── BenchmarkDialog.cpp │ │ │ │ │ ├── BenchmarkDialog.h │ │ │ │ │ ├── BenchmarkDialog.rc │ │ │ │ │ ├── BenchmarkDialogRes.h │ │ │ │ │ ├── CompressDialog.cpp │ │ │ │ │ ├── CompressDialog.h │ │ │ │ │ ├── CompressDialog.rc │ │ │ │ │ ├── CompressDialogRes.h │ │ │ │ │ ├── Extract.rc │ │ │ │ │ ├── ExtractDialog.cpp │ │ │ │ │ ├── ExtractDialog.h │ │ │ │ │ ├── ExtractDialog.rc │ │ │ │ │ ├── ExtractDialogRes.h │ │ │ │ │ ├── ExtractGUI.cpp │ │ │ │ │ ├── ExtractGUI.h │ │ │ │ │ ├── ExtractRes.h │ │ │ │ │ ├── FM.ico │ │ │ │ │ ├── GUI.cpp │ │ │ │ │ ├── GUI.dsp │ │ │ │ │ ├── GUI.dsw │ │ │ │ │ ├── HashGUI.cpp │ │ │ │ │ ├── HashGUI.h │ │ │ │ │ ├── UpdateCallbackGUI.cpp │ │ │ │ │ ├── UpdateCallbackGUI.h │ │ │ │ │ ├── UpdateCallbackGUI2.cpp │ │ │ │ │ ├── UpdateCallbackGUI2.h │ │ │ │ │ ├── UpdateGUI.cpp │ │ │ │ │ ├── UpdateGUI.h │ │ │ │ │ ├── makefile │ │ │ │ │ ├── resource.rc │ │ │ │ │ ├── resource2.h │ │ │ │ │ ├── resource2.rc │ │ │ │ │ ├── resource3.h │ │ │ │ │ └── resource3.rc │ │ │ │ └── makefile │ │ │ └── makefile │ │ ├── Build.mak │ │ ├── Common │ │ │ ├── AutoPtr.h │ │ │ ├── CRC.cpp │ │ │ ├── C_FileIO.cpp │ │ │ ├── C_FileIO.h │ │ │ ├── ComTry.h │ │ │ ├── CommandLineParser.cpp │ │ │ ├── CommandLineParser.h │ │ │ ├── Common.h │ │ │ ├── CrcReg.cpp │ │ │ ├── Defs.h │ │ │ ├── DynLimBuf.cpp │ │ │ ├── DynLimBuf.h │ │ │ ├── DynamicBuffer.h │ │ │ ├── IntToString.cpp │ │ │ ├── IntToString.h │ │ │ ├── Lang.cpp │ │ │ ├── Lang.h │ │ │ ├── ListFileUtils.cpp │ │ │ ├── ListFileUtils.h │ │ │ ├── MyBuffer.h │ │ │ ├── MyCom.h │ │ │ ├── MyException.h │ │ │ ├── MyGuidDef.h │ │ │ ├── MyInitGuid.h │ │ │ ├── MyLinux.h │ │ │ ├── MyMap.cpp │ │ │ ├── MyMap.h │ │ │ ├── MyString.cpp │ │ │ ├── MyString.h │ │ │ ├── MyTypes.h │ │ │ ├── MyUnknown.h │ │ │ ├── MyVector.cpp │ │ │ ├── MyVector.h │ │ │ ├── MyWindows.cpp │ │ │ ├── MyWindows.h │ │ │ ├── MyXml.cpp │ │ │ ├── MyXml.h │ │ │ ├── NewHandler.cpp │ │ │ ├── NewHandler.h │ │ │ ├── Random.cpp │ │ │ ├── Random.h │ │ │ ├── Sha1Reg.cpp │ │ │ ├── Sha256Reg.cpp │ │ │ ├── StdInStream.cpp │ │ │ ├── StdInStream.h │ │ │ ├── StdOutStream.cpp │ │ │ ├── StdOutStream.h │ │ │ ├── StringConvert.cpp │ │ │ ├── StringConvert.h │ │ │ ├── StringToInt.cpp │ │ │ ├── StringToInt.h │ │ │ ├── TextConfig.cpp │ │ │ ├── TextConfig.h │ │ │ ├── UTFConvert.cpp │ │ │ ├── UTFConvert.h │ │ │ ├── Wildcard.cpp │ │ │ ├── Wildcard.h │ │ │ └── XzCrc64Reg.cpp │ │ └── Windows │ │ │ ├── COM.cpp │ │ │ ├── COM.h │ │ │ ├── Clipboard.cpp │ │ │ ├── Clipboard.h │ │ │ ├── CommonDialog.cpp │ │ │ ├── CommonDialog.h │ │ │ ├── Console.cpp │ │ │ ├── Console.h │ │ │ ├── Control │ │ │ ├── ComboBox.cpp │ │ │ ├── ComboBox.h │ │ │ ├── CommandBar.h │ │ │ ├── Dialog.cpp │ │ │ ├── Dialog.h │ │ │ ├── Edit.h │ │ │ ├── ImageList.cpp │ │ │ ├── ImageList.h │ │ │ ├── ListView.cpp │ │ │ ├── ListView.h │ │ │ ├── ProgressBar.h │ │ │ ├── PropertyPage.cpp │ │ │ ├── PropertyPage.h │ │ │ ├── ReBar.h │ │ │ ├── Static.h │ │ │ ├── StatusBar.h │ │ │ ├── ToolBar.h │ │ │ ├── Trackbar.h │ │ │ ├── Window2.cpp │ │ │ └── Window2.h │ │ │ ├── DLL.cpp │ │ │ ├── DLL.h │ │ │ ├── Defs.h │ │ │ ├── ErrorMsg.cpp │ │ │ ├── ErrorMsg.h │ │ │ ├── FileDir.cpp │ │ │ ├── FileDir.h │ │ │ ├── FileFind.cpp │ │ │ ├── FileFind.h │ │ │ ├── FileIO.cpp │ │ │ ├── FileIO.h │ │ │ ├── FileLink.cpp │ │ │ ├── FileMapping.cpp │ │ │ ├── FileMapping.h │ │ │ ├── FileName.cpp │ │ │ ├── FileName.h │ │ │ ├── FileSystem.cpp │ │ │ ├── FileSystem.h │ │ │ ├── Handle.h │ │ │ ├── MemoryGlobal.cpp │ │ │ ├── MemoryGlobal.h │ │ │ ├── MemoryLock.cpp │ │ │ ├── MemoryLock.h │ │ │ ├── Menu.cpp │ │ │ ├── Menu.h │ │ │ ├── NationalTime.cpp │ │ │ ├── NationalTime.h │ │ │ ├── Net.cpp │ │ │ ├── Net.h │ │ │ ├── NtCheck.h │ │ │ ├── ProcessMessages.cpp │ │ │ ├── ProcessMessages.h │ │ │ ├── ProcessUtils.cpp │ │ │ ├── ProcessUtils.h │ │ │ ├── PropVariant.cpp │ │ │ ├── PropVariant.h │ │ │ ├── PropVariantConv.cpp │ │ │ ├── PropVariantConv.h │ │ │ ├── PropVariantUtils.cpp │ │ │ ├── PropVariantUtils.h │ │ │ ├── Registry.cpp │ │ │ ├── Registry.h │ │ │ ├── ResourceString.cpp │ │ │ ├── ResourceString.h │ │ │ ├── SecurityUtils.cpp │ │ │ ├── SecurityUtils.h │ │ │ ├── Shell.cpp │ │ │ ├── Shell.h │ │ │ ├── Synchronization.cpp │ │ │ ├── Synchronization.h │ │ │ ├── System.cpp │ │ │ ├── System.h │ │ │ ├── Thread.h │ │ │ ├── TimeUtils.cpp │ │ │ ├── TimeUtils.h │ │ │ ├── Window.cpp │ │ │ └── Window.h │ ├── SevenZip │ │ ├── ArchiveExtractCallback.cpp │ │ ├── ArchiveExtractCallback.h │ │ ├── ArchiveExtractCallbackMemory.cpp │ │ ├── ArchiveExtractCallbackMemory.h │ │ ├── ArchiveOpenCallback.cpp │ │ ├── ArchiveOpenCallback.h │ │ ├── ArchiveUpdateCallback.cpp │ │ ├── ArchiveUpdateCallback.h │ │ ├── BlobBuffer.cpp │ │ ├── BlobBuffer.h │ │ ├── CompressionFormat.h │ │ ├── CompressionLevel.h │ │ ├── Enum.h │ │ ├── ErpExcept.cpp │ │ ├── ErpExcept.h │ │ ├── FileInfo.h │ │ ├── FileStream.cpp │ │ ├── FileStream.h │ │ ├── FileStreamMemory.cpp │ │ ├── FileStreamMemory.h │ │ ├── FileSys.cpp │ │ ├── FileSys.h │ │ ├── GUIDs.cpp │ │ ├── GUIDs.h │ │ ├── InStreamWrapper.cpp │ │ ├── InStreamWrapper.h │ │ ├── ListCallback.h │ │ ├── OutStreamWrapper.cpp │ │ ├── OutStreamWrapper.h │ │ ├── OutStreamWrapperMemory.cpp │ │ ├── OutStreamWrapperMemory.h │ │ ├── PathScanner.cpp │ │ ├── PathScanner.h │ │ ├── ProgressCallback.h │ │ ├── PropVariant2.cpp │ │ ├── PropVariant2.h │ │ ├── SevenString.h │ │ ├── SevenZipArchive.cpp │ │ ├── SevenZipArchive.h │ │ ├── SevenZipCompressor.cpp │ │ ├── SevenZipCompressor.h │ │ ├── SevenZipException.cpp │ │ ├── SevenZipException.h │ │ ├── SevenZipExtractor.cpp │ │ ├── SevenZipExtractor.h │ │ ├── SevenZipExtractorMemory.cpp │ │ ├── SevenZipExtractorMemory.h │ │ ├── SevenZipLibrary.cpp │ │ ├── SevenZipLibrary.h │ │ ├── SevenZipLister.cpp │ │ ├── SevenZipLister.h │ │ ├── SevenZipPwd.h │ │ ├── UsefulFunctions.cpp │ │ └── UsefulFunctions.h │ ├── test.cpp │ └── testunzip.cpp ├── CMakeLists.txt ├── Scintilla │ ├── CMakeLists.txt │ ├── License.txt │ ├── README │ ├── include │ │ ├── ILexer.h │ │ ├── Platform.h │ │ ├── SciLexer.h │ │ ├── Sci_Position.h │ │ ├── Scintilla.h │ │ ├── Scintilla.iface │ │ └── ScintillaWidget.h │ ├── lexers │ │ ├── LexCPP.cxx │ │ └── LexHTML.cxx │ ├── lexlib │ │ ├── Accessor.cxx │ │ ├── Accessor.h │ │ ├── CharacterCategory.cxx │ │ ├── CharacterCategory.h │ │ ├── CharacterSet.cxx │ │ ├── CharacterSet.h │ │ ├── LexAccessor.h │ │ ├── LexerBase.cxx │ │ ├── LexerBase.h │ │ ├── LexerModule.cxx │ │ ├── LexerModule.h │ │ ├── LexerNoExceptions.cxx │ │ ├── LexerNoExceptions.h │ │ ├── LexerSimple.cxx │ │ ├── LexerSimple.h │ │ ├── OptionSet.h │ │ ├── PropSetSimple.cxx │ │ ├── PropSetSimple.h │ │ ├── SparseState.h │ │ ├── StringCopy.h │ │ ├── StyleContext.cxx │ │ ├── StyleContext.h │ │ ├── SubStyles.h │ │ ├── WordList.cxx │ │ └── WordList.h │ ├── scintilla.pro │ ├── scintilla.vcproj │ ├── src │ │ ├── AutoComplete.cxx │ │ ├── AutoComplete.h │ │ ├── CallTip.cxx │ │ ├── CallTip.h │ │ ├── CaseConvert.cxx │ │ ├── CaseConvert.h │ │ ├── CaseFolder.cxx │ │ ├── CaseFolder.h │ │ ├── Catalogue.cxx │ │ ├── Catalogue.h │ │ ├── CellBuffer.cxx │ │ ├── CellBuffer.h │ │ ├── CharClassify.cxx │ │ ├── CharClassify.h │ │ ├── ContractionState.cxx │ │ ├── ContractionState.h │ │ ├── Decoration.cxx │ │ ├── Decoration.h │ │ ├── Document.cxx │ │ ├── Document.h │ │ ├── EditModel.cxx │ │ ├── EditModel.h │ │ ├── EditView.cxx │ │ ├── EditView.h │ │ ├── Editor.cxx │ │ ├── Editor.h │ │ ├── ExternalLexer.cxx │ │ ├── ExternalLexer.h │ │ ├── FontQuality.h │ │ ├── Indicator.cxx │ │ ├── Indicator.h │ │ ├── KeyMap.cxx │ │ ├── KeyMap.h │ │ ├── LineMarker.cxx │ │ ├── LineMarker.h │ │ ├── MarginView.cxx │ │ ├── MarginView.h │ │ ├── Partitioning.h │ │ ├── PerLine.cxx │ │ ├── PerLine.h │ │ ├── Position.h │ │ ├── PositionCache.cxx │ │ ├── PositionCache.h │ │ ├── RESearch.cxx │ │ ├── RESearch.h │ │ ├── RunStyles.cxx │ │ ├── RunStyles.h │ │ ├── SciTE.properties │ │ ├── ScintillaBase.cxx │ │ ├── ScintillaBase.h │ │ ├── Selection.cxx │ │ ├── Selection.h │ │ ├── SplitVector.h │ │ ├── Style.cxx │ │ ├── Style.h │ │ ├── UniConversion.cxx │ │ ├── UniConversion.h │ │ ├── UnicodeFromUTF8.h │ │ ├── ViewStyle.cxx │ │ ├── ViewStyle.h │ │ ├── XPM.cxx │ │ └── XPM.h │ ├── version.txt │ └── win32 │ │ ├── HanjaDic.cxx │ │ ├── HanjaDic.h │ │ ├── PlatWin.cxx │ │ ├── PlatWin.h │ │ ├── ScintRes.rc │ │ ├── Scintilla.def │ │ └── ScintillaWin.cxx ├── gtest │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── README │ ├── aclocal.m4 │ ├── gtest.pro │ ├── gtest.vcproj │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ └── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc ├── jsoncpp │ ├── .clang-format │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── amalgamate.py │ ├── appveyor.yml │ ├── dev.makefile │ ├── devtools │ │ ├── __init__.py │ │ ├── agent_vmw7.json │ │ ├── agent_vmxp.json │ │ ├── antglob.py │ │ ├── batchbuild.py │ │ ├── fixeol.py │ │ ├── licenseupdater.py │ │ └── tarball.py │ ├── doc │ │ ├── doxyfile.in │ │ ├── footer.html │ │ ├── header.html │ │ ├── jsoncpp.dox │ │ ├── readme.txt │ │ ├── roadmap.dox │ │ └── web_doxyfile.in │ ├── doxybuild.py │ ├── include │ │ ├── CMakeLists.txt │ │ └── json │ │ │ ├── allocator.h │ │ │ ├── assertions.h │ │ │ ├── autolink.h │ │ │ ├── config.h │ │ │ ├── features.h │ │ │ ├── forwards.h │ │ │ ├── json.h │ │ │ ├── reader.h │ │ │ ├── stdint.h │ │ │ ├── value.h │ │ │ ├── version.h │ │ │ └── writer.h │ ├── jsoncpp.pro │ ├── jsoncpp.vcproj │ ├── makefiles │ │ └── msvc2008 │ │ │ ├── jsontest.vcproj │ │ │ ├── lib_json.vcproj │ │ │ └── test_lib_json.vcproj │ ├── makerelease.py │ ├── meson.build │ ├── pkg-config │ │ └── jsoncpp.pc.in │ ├── src │ │ ├── CMakeLists.txt │ │ ├── jsontestrunner │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── lib_json │ │ │ ├── CMakeLists.txt │ │ │ ├── json_reader.cpp │ │ │ ├── json_tool.h │ │ │ ├── json_value.cpp │ │ │ ├── json_valueiterator.inl │ │ │ ├── json_writer.cpp │ │ │ └── version.h.in │ │ └── test_lib_json │ │ │ ├── CMakeLists.txt │ │ │ ├── jsontest.cpp │ │ │ ├── jsontest.h │ │ │ └── main.cpp │ ├── test │ │ ├── cleantests.py │ │ ├── data │ │ │ ├── fail_test_array_01.json │ │ │ ├── fail_test_stack_limit.json │ │ │ ├── test_array_01.expected │ │ │ ├── test_array_01.json │ │ │ ├── test_array_02.expected │ │ │ ├── test_array_02.json │ │ │ ├── test_array_03.expected │ │ │ ├── test_array_03.json │ │ │ ├── test_array_04.expected │ │ │ ├── test_array_04.json │ │ │ ├── test_array_05.expected │ │ │ ├── test_array_05.json │ │ │ ├── test_array_06.expected │ │ │ ├── test_array_06.json │ │ │ ├── test_array_07.expected │ │ │ ├── test_array_07.json │ │ │ ├── test_basic_01.expected │ │ │ ├── test_basic_01.json │ │ │ ├── test_basic_02.expected │ │ │ ├── test_basic_02.json │ │ │ ├── test_basic_03.expected │ │ │ ├── test_basic_03.json │ │ │ ├── test_basic_04.expected │ │ │ ├── test_basic_04.json │ │ │ ├── test_basic_05.expected │ │ │ ├── test_basic_05.json │ │ │ ├── test_basic_06.expected │ │ │ ├── test_basic_06.json │ │ │ ├── test_basic_07.expected │ │ │ ├── test_basic_07.json │ │ │ ├── test_basic_08.expected │ │ │ ├── test_basic_08.json │ │ │ ├── test_basic_09.expected │ │ │ ├── test_basic_09.json │ │ │ ├── test_comment_00.expected │ │ │ ├── test_comment_00.json │ │ │ ├── test_comment_01.expected │ │ │ ├── test_comment_01.json │ │ │ ├── test_comment_02.expected │ │ │ ├── test_comment_02.json │ │ │ ├── test_complex_01.expected │ │ │ ├── test_complex_01.json │ │ │ ├── test_integer_01.expected │ │ │ ├── test_integer_01.json │ │ │ ├── test_integer_02.expected │ │ │ ├── test_integer_02.json │ │ │ ├── test_integer_03.expected │ │ │ ├── test_integer_03.json │ │ │ ├── test_integer_04.expected │ │ │ ├── test_integer_04.json │ │ │ ├── test_integer_05.expected │ │ │ ├── test_integer_05.json │ │ │ ├── test_integer_06_64bits.expected │ │ │ ├── test_integer_06_64bits.json │ │ │ ├── test_integer_07_64bits.expected │ │ │ ├── test_integer_07_64bits.json │ │ │ ├── test_integer_08_64bits.expected │ │ │ ├── test_integer_08_64bits.json │ │ │ ├── test_large_01.expected │ │ │ ├── test_large_01.json │ │ │ ├── test_object_01.expected │ │ │ ├── test_object_01.json │ │ │ ├── test_object_02.expected │ │ │ ├── test_object_02.json │ │ │ ├── test_object_03.expected │ │ │ ├── test_object_03.json │ │ │ ├── test_object_04.expected │ │ │ ├── test_object_04.json │ │ │ ├── test_preserve_comment_01.expected │ │ │ ├── test_preserve_comment_01.json │ │ │ ├── test_real_01.expected │ │ │ ├── test_real_01.json │ │ │ ├── test_real_02.expected │ │ │ ├── test_real_02.json │ │ │ ├── test_real_03.expected │ │ │ ├── test_real_03.json │ │ │ ├── test_real_04.expected │ │ │ ├── test_real_04.json │ │ │ ├── test_real_05.expected │ │ │ ├── test_real_05.json │ │ │ ├── test_real_06.expected │ │ │ ├── test_real_06.json │ │ │ ├── test_real_07.expected │ │ │ ├── test_real_07.json │ │ │ ├── test_real_08.expected │ │ │ ├── test_real_08.json │ │ │ ├── test_real_09.expected │ │ │ ├── test_real_09.json │ │ │ ├── test_real_10.expected │ │ │ ├── test_real_10.json │ │ │ ├── test_real_11.expected │ │ │ ├── test_real_11.json │ │ │ ├── test_real_12.expected │ │ │ ├── test_real_12.json │ │ │ ├── test_string_01.expected │ │ │ ├── test_string_01.json │ │ │ ├── test_string_02.expected │ │ │ ├── test_string_02.json │ │ │ ├── test_string_03.expected │ │ │ ├── test_string_03.json │ │ │ ├── test_string_04.expected │ │ │ ├── test_string_04.json │ │ │ ├── test_string_05.expected │ │ │ ├── test_string_05.json │ │ │ ├── test_string_unicode_01.expected │ │ │ ├── test_string_unicode_01.json │ │ │ ├── test_string_unicode_02.expected │ │ │ ├── test_string_unicode_02.json │ │ │ ├── test_string_unicode_03.expected │ │ │ ├── test_string_unicode_03.json │ │ │ ├── test_string_unicode_04.expected │ │ │ ├── test_string_unicode_04.json │ │ │ ├── test_string_unicode_05.expected │ │ │ └── test_string_unicode_05.json │ │ ├── generate_expected.py │ │ ├── jsonchecker │ │ │ ├── fail1.json │ │ │ ├── fail10.json │ │ │ ├── fail11.json │ │ │ ├── fail12.json │ │ │ ├── fail13.json │ │ │ ├── fail14.json │ │ │ ├── fail15.json │ │ │ ├── fail16.json │ │ │ ├── fail17.json │ │ │ ├── fail18.json │ │ │ ├── fail19.json │ │ │ ├── fail2.json │ │ │ ├── fail20.json │ │ │ ├── fail21.json │ │ │ ├── fail22.json │ │ │ ├── fail23.json │ │ │ ├── fail24.json │ │ │ ├── fail25.json │ │ │ ├── fail26.json │ │ │ ├── fail27.json │ │ │ ├── fail28.json │ │ │ ├── fail29.json │ │ │ ├── fail3.json │ │ │ ├── fail30.json │ │ │ ├── fail31.json │ │ │ ├── fail32.json │ │ │ ├── fail33.json │ │ │ ├── fail4.json │ │ │ ├── fail5.json │ │ │ ├── fail6.json │ │ │ ├── fail7.json │ │ │ ├── fail8.json │ │ │ ├── fail9.json │ │ │ ├── pass1.json │ │ │ ├── pass2.json │ │ │ ├── pass3.json │ │ │ └── readme.txt │ │ ├── pyjsontestrunner.py │ │ ├── runjsontests.py │ │ └── rununittests.py │ ├── travis.sh │ ├── version │ └── version.in ├── lua-52 │ ├── CMakeLists.txt │ ├── lua-52.pro │ ├── lua-52.sln │ ├── lua-52.vcproj │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lbitlib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ └── lzio.h ├── mhook │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── disasm-lib │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── disasm.c │ │ ├── disasm.h │ │ ├── disasm_x86.c │ │ ├── disasm_x86.h │ │ ├── disasm_x86_tables.h │ │ ├── misc.c │ │ └── misc.h │ ├── mhook-lib │ │ ├── mhook.cpp │ │ └── mhook.h │ ├── mhook.pro │ └── mhook.vcproj ├── nanosvg │ ├── LICENSE.txt │ ├── README.md │ └── src │ │ ├── nanosvg.h │ │ └── nanosvgrast.h ├── png │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README │ ├── libpng-manual.txt │ ├── png.c │ ├── png.h │ ├── png.pro │ ├── png.vcproj │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pnglibconf.h │ ├── pngmem.c │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtrans.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ └── pngwutil.c ├── skia │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── include │ │ ├── animator │ │ │ ├── SkAnimator.h │ │ │ └── SkAnimatorView.h │ │ ├── config │ │ │ ├── SkUserConfig.h │ │ │ └── stdint.h │ │ ├── core │ │ │ ├── SkAdvancedTypefaceMetrics.h │ │ │ ├── SkAnnotation.h │ │ │ ├── SkBBHFactory.h │ │ │ ├── SkBitmap.h │ │ │ ├── SkBitmapDevice.h │ │ │ ├── SkBlitRow.h │ │ │ ├── SkBlurTypes.h │ │ │ ├── SkCanvas.h │ │ │ ├── SkChunkAlloc.h │ │ │ ├── SkClipStack.h │ │ │ ├── SkColor.h │ │ │ ├── SkColorFilter.h │ │ │ ├── SkColorPriv.h │ │ │ ├── SkColorShader.h │ │ │ ├── SkColorTable.h │ │ │ ├── SkComposeShader.h │ │ │ ├── SkData.h │ │ │ ├── SkDataTable.h │ │ │ ├── SkDeque.h │ │ │ ├── SkDevice.h │ │ │ ├── SkDither.h │ │ │ ├── SkDocument.h │ │ │ ├── SkDraw.h │ │ │ ├── SkDrawFilter.h │ │ │ ├── SkDrawLooper.h │ │ │ ├── SkDrawPictureCallback.h │ │ │ ├── SkDynamicAnnotations.h │ │ │ ├── SkEndian.h │ │ │ ├── SkError.h │ │ │ ├── SkFixed.h │ │ │ ├── SkFlattenable.h │ │ │ ├── SkFlattenableBuffers.h │ │ │ ├── SkFlattenableSerialization.h │ │ │ ├── SkFloatBits.h │ │ │ ├── SkFloatingPoint.h │ │ │ ├── SkFont.h │ │ │ ├── SkFontHost.h │ │ │ ├── SkFontLCDConfig.h │ │ │ ├── SkGraphics.h │ │ │ ├── SkImage.h │ │ │ ├── SkImageDecoder.h │ │ │ ├── SkImageEncoder.h │ │ │ ├── SkImageFilter.h │ │ │ ├── SkImageGenerator.h │ │ │ ├── SkImageInfo.h │ │ │ ├── SkInstCnt.h │ │ │ ├── SkMallocPixelRef.h │ │ │ ├── SkMask.h │ │ │ ├── SkMaskFilter.h │ │ │ ├── SkMath.h │ │ │ ├── SkMatrix.h │ │ │ ├── SkMetaData.h │ │ │ ├── SkMultiPictureDraw.h │ │ │ ├── SkOSFile.h │ │ │ ├── SkOnce.h │ │ │ ├── SkPackBits.h │ │ │ ├── SkPaint.h │ │ │ ├── SkPath.h │ │ │ ├── SkPathEffect.h │ │ │ ├── SkPathMeasure.h │ │ │ ├── SkPathRef.h │ │ │ ├── SkPicture.h │ │ │ ├── SkPictureRecorder.h │ │ │ ├── SkPixelRef.h │ │ │ ├── SkPoint.h │ │ │ ├── SkPostConfig.h │ │ │ ├── SkPreConfig.h │ │ │ ├── SkRRect.h │ │ │ ├── SkRasterizer.h │ │ │ ├── SkRect.h │ │ │ ├── SkRefCnt.h │ │ │ ├── SkRegion.h │ │ │ ├── SkScalar.h │ │ │ ├── SkShader.h │ │ │ ├── SkSize.h │ │ │ ├── SkStream.h │ │ │ ├── SkString.h │ │ │ ├── SkStrokeRec.h │ │ │ ├── SkSurface.h │ │ │ ├── SkSurfaceProps.h │ │ │ ├── SkTArray.h │ │ │ ├── SkTDArray.h │ │ │ ├── SkTDStack.h │ │ │ ├── SkTDict.h │ │ │ ├── SkTInternalLList.h │ │ │ ├── SkTLazy.h │ │ │ ├── SkTRegistry.h │ │ │ ├── SkTSearch.h │ │ │ ├── SkTemplates.h │ │ │ ├── SkTextBlob.h │ │ │ ├── SkThread.h │ │ │ ├── SkTime.h │ │ │ ├── SkTypeface.h │ │ │ ├── SkTypes.h │ │ │ ├── SkUnPreMultiply.h │ │ │ ├── SkUtils.h │ │ │ ├── SkWeakRefCnt.h │ │ │ ├── SkWriteBuffer.h │ │ │ ├── SkWriter32.h │ │ │ └── SkXfermode.h │ │ ├── device │ │ │ └── xps │ │ │ │ ├── SkConstexprMath.h │ │ │ │ └── SkXPSDevice.h │ │ ├── effects │ │ │ ├── Sk1DPathEffect.h │ │ │ ├── Sk2DPathEffect.h │ │ │ ├── SkAlphaThresholdFilter.h │ │ │ ├── SkArithmeticMode.h │ │ │ ├── SkAvoidXfermode.h │ │ │ ├── SkBitmapSource.h │ │ │ ├── SkBlurDrawLooper.h │ │ │ ├── SkBlurImageFilter.h │ │ │ ├── SkBlurMaskFilter.h │ │ │ ├── SkColorFilterImageFilter.h │ │ │ ├── SkColorMatrix.h │ │ │ ├── SkColorMatrixFilter.h │ │ │ ├── SkComposeImageFilter.h │ │ │ ├── SkCornerPathEffect.h │ │ │ ├── SkDashPathEffect.h │ │ │ ├── SkDiscretePathEffect.h │ │ │ ├── SkDisplacementMapEffect.h │ │ │ ├── SkDrawExtraPathEffect.h │ │ │ ├── SkDropShadowImageFilter.h │ │ │ ├── SkEmbossMaskFilter.h │ │ │ ├── SkGradientShader.h │ │ │ ├── SkLayerDrawLooper.h │ │ │ ├── SkLayerRasterizer.h │ │ │ ├── SkLerpXfermode.h │ │ │ ├── SkLightingImageFilter.h │ │ │ ├── SkLumaColorFilter.h │ │ │ ├── SkMagnifierImageFilter.h │ │ │ ├── SkMatrixConvolutionImageFilter.h │ │ │ ├── SkMatrixImageFilter.h │ │ │ ├── SkMergeImageFilter.h │ │ │ ├── SkMorphologyImageFilter.h │ │ │ ├── SkOffsetImageFilter.h │ │ │ ├── SkPaintFlagsDrawFilter.h │ │ │ ├── SkPerlinNoiseShader.h │ │ │ ├── SkPictureImageFilter.h │ │ │ ├── SkPixelXorXfermode.h │ │ │ ├── SkPorterDuff.h │ │ │ ├── SkRectShaderImageFilter.h │ │ │ ├── SkTableColorFilter.h │ │ │ ├── SkTableMaskFilter.h │ │ │ ├── SkTestImageFilters.h │ │ │ ├── SkTileImageFilter.h │ │ │ ├── SkTransparentShader.h │ │ │ └── SkXfermodeImageFilter.h │ │ ├── gpu │ │ │ ├── GrBackendProcessorFactory.h │ │ │ ├── GrBinHashKey.h │ │ │ ├── GrClipData.h │ │ │ ├── GrColor.h │ │ │ ├── GrConfig.h │ │ │ ├── GrContext.h │ │ │ ├── GrContextFactory.h │ │ │ ├── GrCoordTransform.h │ │ │ ├── GrFontScaler.h │ │ │ ├── GrGeometryProcessor.h │ │ │ ├── GrGlyph.h │ │ │ ├── GrGpuResource.h │ │ │ ├── GrGpuResourceRef.h │ │ │ ├── GrPaint.h │ │ │ ├── GrPathRendererChain.h │ │ │ ├── GrProcessor.h │ │ │ ├── GrProcessorStage.h │ │ │ ├── GrProcessorUnitTest.h │ │ │ ├── GrProgramElement.h │ │ │ ├── GrProgramElementRef.h │ │ │ ├── GrRect.h │ │ │ ├── GrRenderTarget.h │ │ │ ├── GrResourceKey.h │ │ │ ├── GrShaderVar.h │ │ │ ├── GrSurface.h │ │ │ ├── GrTBackendProcessorFactory.h │ │ │ ├── GrTexture.h │ │ │ ├── GrTextureAccess.h │ │ │ ├── GrTypes.h │ │ │ ├── GrTypesPriv.h │ │ │ ├── GrUserConfig.h │ │ │ ├── SkGr.h │ │ │ ├── SkGrPixelRef.h │ │ │ ├── SkGrTexturePixelRef.h │ │ │ └── gl │ │ │ │ ├── GrGLConfig.h │ │ │ │ ├── GrGLConfig_chrome.h │ │ │ │ ├── GrGLExtensions.h │ │ │ │ ├── GrGLFunctions.h │ │ │ │ ├── GrGLInterface.h │ │ │ │ ├── GrGLSLPrettyPrint.h │ │ │ │ ├── SkANGLEGLContext.h │ │ │ │ ├── SkDebugGLContext.h │ │ │ │ ├── SkGLContextHelper.h │ │ │ │ ├── SkMesaGLContext.h │ │ │ │ ├── SkNativeGLContext.h │ │ │ │ └── SkNullGLContext.h │ │ ├── images │ │ │ ├── SkDecodingImageGenerator.h │ │ │ ├── SkForceLinking.h │ │ │ ├── SkMovie.h │ │ │ └── SkPageFlipper.h │ │ ├── pathops │ │ │ └── SkPathOps.h │ │ ├── pdf │ │ │ ├── SkPDFDevice.h │ │ │ └── SkPDFDocument.h │ │ ├── pipe │ │ │ └── SkGPipe.h │ │ ├── ports │ │ │ ├── SkFontConfigInterface.h │ │ │ ├── SkFontMgr.h │ │ │ ├── SkFontMgr_indirect.h │ │ │ ├── SkFontStyle.h │ │ │ ├── SkRemotableFontMgr.h │ │ │ ├── SkTypeface_android.h │ │ │ ├── SkTypeface_mac.h │ │ │ └── SkTypeface_win.h │ │ ├── record │ │ │ └── SkRecording.h │ │ ├── svg │ │ │ ├── SkSVGAttribute.h │ │ │ ├── SkSVGBase.h │ │ │ ├── SkSVGPaintState.h │ │ │ ├── SkSVGParser.h │ │ │ └── SkSVGTypes.h │ │ ├── utils │ │ │ ├── SkBoundaryPatch.h │ │ │ ├── SkCamera.h │ │ │ ├── SkCanvasStateUtils.h │ │ │ ├── SkCubicInterval.h │ │ │ ├── SkCullPoints.h │ │ │ ├── SkDebugUtils.h │ │ │ ├── SkDeferredCanvas.h │ │ │ ├── SkDumpCanvas.h │ │ │ ├── SkEventTracer.h │ │ │ ├── SkFrontBufferedStream.h │ │ │ ├── SkInterpolator.h │ │ │ ├── SkJSONCPP.h │ │ │ ├── SkLayer.h │ │ │ ├── SkLua.h │ │ │ ├── SkLuaCanvas.h │ │ │ ├── SkMatrix44.h │ │ │ ├── SkMeshUtils.h │ │ │ ├── SkNWayCanvas.h │ │ │ ├── SkNinePatch.h │ │ │ ├── SkNoSaveLayerCanvas.h │ │ │ ├── SkNullCanvas.h │ │ │ ├── SkParse.h │ │ │ ├── SkParsePaint.h │ │ │ ├── SkParsePath.h │ │ │ ├── SkPathUtils.h │ │ │ ├── SkPictureUtils.h │ │ │ ├── SkProxyCanvas.h │ │ │ ├── SkRTConf.h │ │ │ ├── SkRandom.h │ │ │ ├── SkWGL.h │ │ │ ├── ios │ │ │ │ └── SkStream_NSData.h │ │ │ ├── mac │ │ │ │ └── SkCGUtils.h │ │ │ └── win │ │ │ │ ├── SkAutoCoInitialize.h │ │ │ │ ├── SkHRESULT.h │ │ │ │ ├── SkIStream.h │ │ │ │ └── SkTScopedComPtr.h │ │ ├── views │ │ │ ├── SkApplication.h │ │ │ ├── SkBGViewArtist.h │ │ │ ├── SkEvent.h │ │ │ ├── SkEventSink.h │ │ │ ├── SkKey.h │ │ │ ├── SkOSMenu.h │ │ │ ├── SkOSWindow_Android.h │ │ │ ├── SkOSWindow_Mac.h │ │ │ ├── SkOSWindow_NaCl.h │ │ │ ├── SkOSWindow_SDL.h │ │ │ ├── SkOSWindow_Unix.h │ │ │ ├── SkOSWindow_Win.h │ │ │ ├── SkOSWindow_iOS.h │ │ │ ├── SkStackViewLayout.h │ │ │ ├── SkSystemEventTypes.h │ │ │ ├── SkTextBox.h │ │ │ ├── SkTouchGesture.h │ │ │ ├── SkView.h │ │ │ ├── SkViewInflate.h │ │ │ ├── SkWidget.h │ │ │ ├── SkWindow.h │ │ │ ├── android │ │ │ │ └── AndroidKeyToSkKey.h │ │ │ ├── animated │ │ │ │ ├── SkBorderView.h │ │ │ │ ├── SkImageView.h │ │ │ │ ├── SkProgressBarView.h │ │ │ │ ├── SkScrollBarView.h │ │ │ │ └── SkWidgetViews.h │ │ │ └── unix │ │ │ │ ├── XkeysToSkKeys.h │ │ │ │ └── keysym2ucs.h │ │ └── xml │ │ │ ├── SkBML_WXMLParser.h │ │ │ ├── SkBML_XMLParser.h │ │ │ ├── SkDOM.h │ │ │ ├── SkJS.h │ │ │ ├── SkXMLParser.h │ │ │ └── SkXMLWriter.h │ ├── skia.pro │ ├── skia.vcproj │ └── src │ │ ├── animator │ │ ├── SkAnimate.h │ │ ├── SkAnimate3DSchema.xsd │ │ ├── SkAnimate3DSchema.xsx │ │ ├── SkAnimateActive.cpp │ │ ├── SkAnimateActive.h │ │ ├── SkAnimateBase.cpp │ │ ├── SkAnimateBase.h │ │ ├── SkAnimateField.cpp │ │ ├── SkAnimateMaker.cpp │ │ ├── SkAnimateMaker.h │ │ ├── SkAnimateProperties.h │ │ ├── SkAnimateSchema.xsd │ │ ├── SkAnimateSchema.xsx │ │ ├── SkAnimateSet.cpp │ │ ├── SkAnimateSet.h │ │ ├── SkAnimator.cpp │ │ ├── SkAnimatorScript.cpp │ │ ├── SkAnimatorScript.h │ │ ├── SkAnimatorScript2.cpp │ │ ├── SkAnimatorScript2.h │ │ ├── SkBoundable.cpp │ │ ├── SkBoundable.h │ │ ├── SkBuildCondensedInfo.cpp │ │ ├── SkCondensedDebug.cpp │ │ ├── SkCondensedRelease.cpp │ │ ├── SkDisplayAdd.cpp │ │ ├── SkDisplayAdd.h │ │ ├── SkDisplayApply.cpp │ │ ├── SkDisplayApply.h │ │ ├── SkDisplayBounds.cpp │ │ ├── SkDisplayBounds.h │ │ ├── SkDisplayEvent.cpp │ │ ├── SkDisplayEvent.h │ │ ├── SkDisplayEvents.cpp │ │ ├── SkDisplayEvents.h │ │ ├── SkDisplayInclude.cpp │ │ ├── SkDisplayInclude.h │ │ ├── SkDisplayInput.cpp │ │ ├── SkDisplayInput.h │ │ ├── SkDisplayList.cpp │ │ ├── SkDisplayList.h │ │ ├── SkDisplayMath.cpp │ │ ├── SkDisplayMath.h │ │ ├── SkDisplayMovie.cpp │ │ ├── SkDisplayMovie.h │ │ ├── SkDisplayNumber.cpp │ │ ├── SkDisplayNumber.h │ │ ├── SkDisplayPost.cpp │ │ ├── SkDisplayPost.h │ │ ├── SkDisplayRandom.cpp │ │ ├── SkDisplayRandom.h │ │ ├── SkDisplayScreenplay.cpp │ │ ├── SkDisplayScreenplay.h │ │ ├── SkDisplayType.cpp │ │ ├── SkDisplayType.h │ │ ├── SkDisplayTypes.cpp │ │ ├── SkDisplayTypes.h │ │ ├── SkDisplayXMLParser.cpp │ │ ├── SkDisplayXMLParser.h │ │ ├── SkDisplayable.cpp │ │ ├── SkDisplayable.h │ │ ├── SkDraw3D.cpp │ │ ├── SkDraw3D.h │ │ ├── SkDrawBitmap.cpp │ │ ├── SkDrawBitmap.h │ │ ├── SkDrawBlur.cpp │ │ ├── SkDrawBlur.h │ │ ├── SkDrawClip.cpp │ │ ├── SkDrawClip.h │ │ ├── SkDrawColor.cpp │ │ ├── SkDrawColor.h │ │ ├── SkDrawDash.cpp │ │ ├── SkDrawDash.h │ │ ├── SkDrawDiscrete.cpp │ │ ├── SkDrawDiscrete.h │ │ ├── SkDrawEmboss.cpp │ │ ├── SkDrawEmboss.h │ │ ├── SkDrawExtraPathEffect.cpp │ │ ├── SkDrawFull.cpp │ │ ├── SkDrawFull.h │ │ ├── SkDrawGradient.cpp │ │ ├── SkDrawGradient.h │ │ ├── SkDrawGroup.cpp │ │ ├── SkDrawGroup.h │ │ ├── SkDrawLine.cpp │ │ ├── SkDrawLine.h │ │ ├── SkDrawMatrix.cpp │ │ ├── SkDrawMatrix.h │ │ ├── SkDrawOval.cpp │ │ ├── SkDrawOval.h │ │ ├── SkDrawPaint.cpp │ │ ├── SkDrawPaint.h │ │ ├── SkDrawPath.cpp │ │ ├── SkDrawPath.h │ │ ├── SkDrawPoint.cpp │ │ ├── SkDrawPoint.h │ │ ├── SkDrawRectangle.cpp │ │ ├── SkDrawRectangle.h │ │ ├── SkDrawSaveLayer.cpp │ │ ├── SkDrawSaveLayer.h │ │ ├── SkDrawShader.cpp │ │ ├── SkDrawShader.h │ │ ├── SkDrawText.cpp │ │ ├── SkDrawText.h │ │ ├── SkDrawTextBox.cpp │ │ ├── SkDrawTextBox.h │ │ ├── SkDrawTo.cpp │ │ ├── SkDrawTo.h │ │ ├── SkDrawTransparentShader.cpp │ │ ├── SkDrawTransparentShader.h │ │ ├── SkDrawable.cpp │ │ ├── SkDrawable.h │ │ ├── SkDump.cpp │ │ ├── SkDump.h │ │ ├── SkExtraPathEffects.xsd │ │ ├── SkExtras.h │ │ ├── SkGetCondensedInfo.cpp │ │ ├── SkHitClear.cpp │ │ ├── SkHitClear.h │ │ ├── SkHitTest.cpp │ │ ├── SkHitTest.h │ │ ├── SkIntArray.h │ │ ├── SkMatrixParts.cpp │ │ ├── SkMatrixParts.h │ │ ├── SkMemberInfo.cpp │ │ ├── SkMemberInfo.h │ │ ├── SkOpArray.cpp │ │ ├── SkOpArray.h │ │ ├── SkOperand.h │ │ ├── SkOperand2.h │ │ ├── SkOperandInterpolator.h │ │ ├── SkOperandIterpolator.cpp │ │ ├── SkPaintPart.cpp │ │ ├── SkPaintPart.h │ │ ├── SkParseSVGPath.cpp │ │ ├── SkPathParts.cpp │ │ ├── SkPathParts.h │ │ ├── SkPostParts.cpp │ │ ├── SkPostParts.h │ │ ├── SkScript.cpp │ │ ├── SkScript.h │ │ ├── SkScript2.h │ │ ├── SkScriptCallBack.h │ │ ├── SkScriptDecompile.cpp │ │ ├── SkScriptRuntime.cpp │ │ ├── SkScriptRuntime.h │ │ ├── SkScriptTokenizer.cpp │ │ ├── SkSnapshot.cpp │ │ ├── SkSnapshot.h │ │ ├── SkTDArray_Experimental.h │ │ ├── SkTextOnPath.cpp │ │ ├── SkTextOnPath.h │ │ ├── SkTextToPath.cpp │ │ ├── SkTextToPath.h │ │ ├── SkTime.cpp │ │ ├── SkTypedArray.cpp │ │ ├── SkTypedArray.h │ │ ├── SkXMLAnimatorWriter.cpp │ │ ├── SkXMLAnimatorWriter.h │ │ └── thingstodo.txt │ │ ├── core │ │ ├── SkAAClip.cpp │ │ ├── SkAAClip.h │ │ ├── SkAdvancedTypefaceMetrics.cpp │ │ ├── SkAlphaRuns.cpp │ │ ├── SkAnnotation.cpp │ │ ├── SkAntiRun.h │ │ ├── SkAutoKern.h │ │ ├── SkBBHFactory.cpp │ │ ├── SkBBoxHierarchy.h │ │ ├── SkBBoxHierarchyRecord.cpp │ │ ├── SkBBoxHierarchyRecord.h │ │ ├── SkBBoxRecord.cpp │ │ ├── SkBBoxRecord.h │ │ ├── SkBitmap.cpp │ │ ├── SkBitmapCache.cpp │ │ ├── SkBitmapCache.h │ │ ├── SkBitmapDevice.cpp │ │ ├── SkBitmapFilter.cpp │ │ ├── SkBitmapFilter.h │ │ ├── SkBitmapHeap.cpp │ │ ├── SkBitmapHeap.h │ │ ├── SkBitmapProcShader.cpp │ │ ├── SkBitmapProcShader.h │ │ ├── SkBitmapProcState.cpp │ │ ├── SkBitmapProcState.h │ │ ├── SkBitmapProcState_filter.h │ │ ├── SkBitmapProcState_matrix.h │ │ ├── SkBitmapProcState_matrixProcs.cpp │ │ ├── SkBitmapProcState_matrix_template.h │ │ ├── SkBitmapProcState_procs.h │ │ ├── SkBitmapProcState_sample.h │ │ ├── SkBitmapProcState_shaderproc.h │ │ ├── SkBitmapProcState_utils.h │ │ ├── SkBitmapScaler.cpp │ │ ├── SkBitmapScaler.h │ │ ├── SkBitmap_scroll.cpp │ │ ├── SkBlitBWMaskTemplate.h │ │ ├── SkBlitMask.h │ │ ├── SkBlitMask_D32.cpp │ │ ├── SkBlitRow_D16.cpp │ │ ├── SkBlitRow_D32.cpp │ │ ├── SkBlitter.cpp │ │ ├── SkBlitter.h │ │ ├── SkBlitter_A8.cpp │ │ ├── SkBlitter_ARGB32.cpp │ │ ├── SkBlitter_RGB16.cpp │ │ ├── SkBlitter_Sprite.cpp │ │ ├── SkBuffer.cpp │ │ ├── SkBuffer.h │ │ ├── SkCanvas.cpp │ │ ├── SkCanvasPriv.h │ │ ├── SkChecksum.h │ │ ├── SkChunkAlloc.cpp │ │ ├── SkClipStack.cpp │ │ ├── SkColor.cpp │ │ ├── SkColorFilter.cpp │ │ ├── SkColorTable.cpp │ │ ├── SkComposeShader.cpp │ │ ├── SkConfig8888.cpp │ │ ├── SkConfig8888.h │ │ ├── SkConvolver.cpp │ │ ├── SkConvolver.h │ │ ├── SkCoreBlitters.h │ │ ├── SkCubicClipper.cpp │ │ ├── SkCubicClipper.h │ │ ├── SkData.cpp │ │ ├── SkDataTable.cpp │ │ ├── SkDebug.cpp │ │ ├── SkDeque.cpp │ │ ├── SkDescriptor.h │ │ ├── SkDevice.cpp │ │ ├── SkDeviceImageFilterProxy.h │ │ ├── SkDeviceLooper.cpp │ │ ├── SkDeviceLooper.h │ │ ├── SkDeviceProfile.cpp │ │ ├── SkDeviceProfile.h │ │ ├── SkDeviceProperties.h │ │ ├── SkDiscardableMemory.h │ │ ├── SkDistanceFieldGen.cpp │ │ ├── SkDistanceFieldGen.h │ │ ├── SkDither.cpp │ │ ├── SkDraw.cpp │ │ ├── SkDrawLooper.cpp │ │ ├── SkDrawProcs.h │ │ ├── SkEdge.cpp │ │ ├── SkEdge.h │ │ ├── SkEdgeBuilder.cpp │ │ ├── SkEdgeBuilder.h │ │ ├── SkEdgeClipper.cpp │ │ ├── SkEdgeClipper.h │ │ ├── SkEmptyShader.h │ │ ├── SkError.cpp │ │ ├── SkErrorInternals.h │ │ ├── SkFDot6.h │ │ ├── SkFilterProc.cpp │ │ ├── SkFilterProc.h │ │ ├── SkFilterShader.cpp │ │ ├── SkFilterShader.h │ │ ├── SkFlate.cpp │ │ ├── SkFlate.h │ │ ├── SkFlattenable.cpp │ │ ├── SkFlattenableSerialization.cpp │ │ ├── SkFloat.cpp │ │ ├── SkFloat.h │ │ ├── SkFloatBits.cpp │ │ ├── SkFont.cpp │ │ ├── SkFontDescriptor.cpp │ │ ├── SkFontDescriptor.h │ │ ├── SkFontHost.cpp │ │ ├── SkFontStream.cpp │ │ ├── SkFontStream.h │ │ ├── SkForceCPlusPlusLinking.cpp │ │ ├── SkGeometry.cpp │ │ ├── SkGeometry.h │ │ ├── SkGlyph.h │ │ ├── SkGlyphCache.cpp │ │ ├── SkGlyphCache.h │ │ ├── SkGlyphCache_Globals.h │ │ ├── SkGraphics.cpp │ │ ├── SkImageFilter.cpp │ │ ├── SkImageGenerator.cpp │ │ ├── SkImageGeneratorPriv.h │ │ ├── SkImageInfo.cpp │ │ ├── SkInstCnt.cpp │ │ ├── SkLazyFnPtr.h │ │ ├── SkLazyPtr.h │ │ ├── SkLineClipper.cpp │ │ ├── SkLineClipper.h │ │ ├── SkLocalMatrixShader.cpp │ │ ├── SkLocalMatrixShader.h │ │ ├── SkMallocPixelRef.cpp │ │ ├── SkMask.cpp │ │ ├── SkMaskFilter.cpp │ │ ├── SkMaskGamma.cpp │ │ ├── SkMaskGamma.h │ │ ├── SkMath.cpp │ │ ├── SkMathPriv.h │ │ ├── SkMatrix.cpp │ │ ├── SkMatrixUtils.h │ │ ├── SkMessageBus.h │ │ ├── SkMetaData.cpp │ │ ├── SkMiniData.cpp │ │ ├── SkMiniData.h │ │ ├── SkMipMap.cpp │ │ ├── SkMipMap.h │ │ ├── SkMultiPictureDraw.cpp │ │ ├── SkOrderedReadBuffer.h │ │ ├── SkPackBits.cpp │ │ ├── SkPaint.cpp │ │ ├── SkPaintDefaults.h │ │ ├── SkPaintPriv.cpp │ │ ├── SkPaintPriv.h │ │ ├── SkPath.cpp │ │ ├── SkPathEffect.cpp │ │ ├── SkPathHeap.cpp │ │ ├── SkPathHeap.h │ │ ├── SkPathMeasure.cpp │ │ ├── SkPathRef.cpp │ │ ├── SkPerspIter.h │ │ ├── SkPicture.cpp │ │ ├── SkPictureContentInfo.cpp │ │ ├── SkPictureContentInfo.h │ │ ├── SkPictureData.cpp │ │ ├── SkPictureData.h │ │ ├── SkPictureFlat.cpp │ │ ├── SkPictureFlat.h │ │ ├── SkPicturePlayback.cpp │ │ ├── SkPicturePlayback.h │ │ ├── SkPictureRecord.cpp │ │ ├── SkPictureRecord.h │ │ ├── SkPictureRecorder.cpp │ │ ├── SkPictureShader.cpp │ │ ├── SkPictureShader.h │ │ ├── SkPictureStateTree.cpp │ │ ├── SkPictureStateTree.h │ │ ├── SkPixelRef.cpp │ │ ├── SkPoint.cpp │ │ ├── SkProcSpriteBlitter.cpp │ │ ├── SkPtrRecorder.cpp │ │ ├── SkPtrRecorder.h │ │ ├── SkQuadClipper.cpp │ │ ├── SkQuadClipper.h │ │ ├── SkRRect.cpp │ │ ├── SkRTree.cpp │ │ ├── SkRTree.h │ │ ├── SkRasterClip.cpp │ │ ├── SkRasterClip.h │ │ ├── SkRasterizer.cpp │ │ ├── SkReadBuffer.cpp │ │ ├── SkReadBuffer.h │ │ ├── SkReader32.h │ │ ├── SkRecord.h │ │ ├── SkRecordDraw.cpp │ │ ├── SkRecordDraw.h │ │ ├── SkRecordOpts.cpp │ │ ├── SkRecordOpts.h │ │ ├── SkRecordPattern.h │ │ ├── SkRecorder.cpp │ │ ├── SkRecorder.h │ │ ├── SkRecording.cpp │ │ ├── SkRecords.h │ │ ├── SkRect.cpp │ │ ├── SkRefDict.cpp │ │ ├── SkRefDict.h │ │ ├── SkRegion.cpp │ │ ├── SkRegionPriv.h │ │ ├── SkRegion_path.cpp │ │ ├── SkResourceCache.cpp │ │ ├── SkResourceCache.h │ │ ├── SkScalar.cpp │ │ ├── SkScalerContext.cpp │ │ ├── SkScalerContext.h │ │ ├── SkScan.cpp │ │ ├── SkScan.h │ │ ├── SkScanPriv.h │ │ ├── SkScan_AntiPath.cpp │ │ ├── SkScan_Antihair.cpp │ │ ├── SkScan_Hairline.cpp │ │ ├── SkScan_Path.cpp │ │ ├── SkShader.cpp │ │ ├── SkSinTable.h │ │ ├── SkSmallAllocator.h │ │ ├── SkSpriteBlitter.h │ │ ├── SkSpriteBlitterTemplate.h │ │ ├── SkSpriteBlitter_ARGB32.cpp │ │ ├── SkSpriteBlitter_RGB16.cpp │ │ ├── SkStream.cpp │ │ ├── SkStreamPriv.h │ │ ├── SkString.cpp │ │ ├── SkStringUtils.cpp │ │ ├── SkStringUtils.h │ │ ├── SkStroke.cpp │ │ ├── SkStroke.h │ │ ├── SkStrokeRec.cpp │ │ ├── SkStrokerPriv.cpp │ │ ├── SkStrokerPriv.h │ │ ├── SkSurfacePriv.h │ │ ├── SkTDynamicHash.h │ │ ├── SkTInternalSList.h │ │ ├── SkTLList.h │ │ ├── SkTLS.cpp │ │ ├── SkTLS.h │ │ ├── SkTMultiMap.h │ │ ├── SkTObjectPool.h │ │ ├── SkTRefArray.h │ │ ├── SkTSearch.cpp │ │ ├── SkTSort.h │ │ ├── SkTextBlob.cpp │ │ ├── SkTextFormatParams.h │ │ ├── SkTextMapStateProc.h │ │ ├── SkTextToPathIter.h │ │ ├── SkThreadPriv.h │ │ ├── SkTileGrid.cpp │ │ ├── SkTileGrid.h │ │ ├── SkTraceEvent.h │ │ ├── SkTypeface.cpp │ │ ├── SkTypefaceCache.cpp │ │ ├── SkTypefaceCache.h │ │ ├── SkTypefacePriv.h │ │ ├── SkUnPreMultiply.cpp │ │ ├── SkUtils.cpp │ │ ├── SkUtilsArm.cpp │ │ ├── SkUtilsArm.h │ │ ├── SkValidatingReadBuffer.cpp │ │ ├── SkValidatingReadBuffer.h │ │ ├── SkValidationUtils.h │ │ ├── SkVertState.cpp │ │ ├── SkVertState.h │ │ ├── SkWriteBuffer.cpp │ │ ├── SkWriter32.cpp │ │ ├── SkXfermode.cpp │ │ └── SkXfermode_proccoeff.h │ │ ├── device │ │ └── xps │ │ │ └── SkXPSDevice.cpp │ │ ├── doc │ │ ├── SkDocument.cpp │ │ └── SkDocument_PDF.cpp │ │ ├── effects │ │ ├── Sk1DPathEffect.cpp │ │ ├── Sk2DPathEffect.cpp │ │ ├── SkAlphaThresholdFilter.cpp │ │ ├── SkArithmeticMode.cpp │ │ ├── SkAvoidXfermode.cpp │ │ ├── SkBitmapSource.cpp │ │ ├── SkBlurDrawLooper.cpp │ │ ├── SkBlurImageFilter.cpp │ │ ├── SkBlurMask.cpp │ │ ├── SkBlurMask.h │ │ ├── SkBlurMaskFilter.cpp │ │ ├── SkColorFilterImageFilter.cpp │ │ ├── SkColorFilters.cpp │ │ ├── SkColorMatrix.cpp │ │ ├── SkColorMatrixFilter.cpp │ │ ├── SkComposeImageFilter.cpp │ │ ├── SkCornerPathEffect.cpp │ │ ├── SkDashPathEffect.cpp │ │ ├── SkDiscretePathEffect.cpp │ │ ├── SkDisplacementMapEffect.cpp │ │ ├── SkDropShadowImageFilter.cpp │ │ ├── SkEmbossMask.cpp │ │ ├── SkEmbossMask.h │ │ ├── SkEmbossMaskFilter.cpp │ │ ├── SkEmbossMask_Table.h │ │ ├── SkGpuBlurUtils.cpp │ │ ├── SkGpuBlurUtils.h │ │ ├── SkLayerDrawLooper.cpp │ │ ├── SkLayerRasterizer.cpp │ │ ├── SkLerpXfermode.cpp │ │ ├── SkLightingImageFilter.cpp │ │ ├── SkLumaColorFilter.cpp │ │ ├── SkMagnifierImageFilter.cpp │ │ ├── SkMatrixConvolutionImageFilter.cpp │ │ ├── SkMatrixImageFilter.cpp │ │ ├── SkMergeImageFilter.cpp │ │ ├── SkMorphologyImageFilter.cpp │ │ ├── SkOffsetImageFilter.cpp │ │ ├── SkPaintFlagsDrawFilter.cpp │ │ ├── SkPerlinNoiseShader.cpp │ │ ├── SkPictureImageFilter.cpp │ │ ├── SkPixelXorXfermode.cpp │ │ ├── SkPorterDuff.cpp │ │ ├── SkRectShaderImageFilter.cpp │ │ ├── SkTableColorFilter.cpp │ │ ├── SkTableMaskFilter.cpp │ │ ├── SkTestImageFilters.cpp │ │ ├── SkTileImageFilter.cpp │ │ ├── SkTransparentShader.cpp │ │ ├── SkXfermodeImageFilter.cpp │ │ └── gradients │ │ │ ├── SkClampRange.cpp │ │ │ ├── SkClampRange.h │ │ │ ├── SkGradientBitmapCache.cpp │ │ │ ├── SkGradientBitmapCache.h │ │ │ ├── SkGradientShader.cpp │ │ │ ├── SkGradientShaderPriv.h │ │ │ ├── SkLinearGradient.cpp │ │ │ ├── SkLinearGradient.h │ │ │ ├── SkRadialGradient.cpp │ │ │ ├── SkRadialGradient.h │ │ │ ├── SkRadialGradient_Table.h │ │ │ ├── SkSweepGradient.cpp │ │ │ ├── SkSweepGradient.h │ │ │ ├── SkTwoPointConicalGradient.cpp │ │ │ ├── SkTwoPointConicalGradient.h │ │ │ ├── SkTwoPointConicalGradient_gpu.cpp │ │ │ ├── SkTwoPointConicalGradient_gpu.h │ │ │ ├── SkTwoPointRadialGradient.cpp │ │ │ └── SkTwoPointRadialGradient.h │ │ ├── fonts │ │ ├── SkFontMgr_indirect.cpp │ │ ├── SkGScalerContext.cpp │ │ ├── SkGScalerContext.h │ │ ├── SkRemotableFontMgr.cpp │ │ ├── SkTestScalerContext.cpp │ │ └── SkTestScalerContext.h │ │ ├── gpu │ │ ├── GrAAConvexPathRenderer.cpp │ │ ├── GrAAConvexPathRenderer.h │ │ ├── GrAAHairLinePathRenderer.cpp │ │ ├── GrAAHairLinePathRenderer.h │ │ ├── GrAARectRenderer.cpp │ │ ├── GrAARectRenderer.h │ │ ├── GrAddPathRenderers_default.cpp │ │ ├── GrAllocPool.cpp │ │ ├── GrAllocPool.h │ │ ├── GrAllocator.h │ │ ├── GrAtlas.cpp │ │ ├── GrAtlas.h │ │ ├── GrBitmapTextContext.cpp │ │ ├── GrBitmapTextContext.h │ │ ├── GrBlend.cpp │ │ ├── GrBlend.h │ │ ├── GrBufferAllocPool.cpp │ │ ├── GrBufferAllocPool.h │ │ ├── GrCacheID.cpp │ │ ├── GrClipData.cpp │ │ ├── GrClipMaskCache.cpp │ │ ├── GrClipMaskCache.h │ │ ├── GrClipMaskManager.cpp │ │ ├── GrClipMaskManager.h │ │ ├── GrContext.cpp │ │ ├── GrDefaultPathRenderer.cpp │ │ ├── GrDefaultPathRenderer.h │ │ ├── GrDistanceFieldTextContext.cpp │ │ ├── GrDistanceFieldTextContext.h │ │ ├── GrDrawState.cpp │ │ ├── GrDrawState.h │ │ ├── GrDrawTarget.cpp │ │ ├── GrDrawTarget.h │ │ ├── GrDrawTargetCaps.h │ │ ├── GrFontScaler.cpp │ │ ├── GrGeometryBuffer.h │ │ ├── GrGpu.cpp │ │ ├── GrGpu.h │ │ ├── GrGpuFactory.cpp │ │ ├── GrGpuResource.cpp │ │ ├── GrGpuResourceRef.cpp │ │ ├── GrInOrderDrawBuffer.cpp │ │ ├── GrInOrderDrawBuffer.h │ │ ├── GrIndexBuffer.h │ │ ├── GrLayerCache.cpp │ │ ├── GrLayerCache.h │ │ ├── GrLayerHoister.cpp │ │ ├── GrLayerHoister.h │ │ ├── GrMemoryPool.cpp │ │ ├── GrMemoryPool.h │ │ ├── GrMurmur3HashKey.h │ │ ├── GrOptDrawState.cpp │ │ ├── GrOptDrawState.h │ │ ├── GrOrderedSet.h │ │ ├── GrOvalRenderer.cpp │ │ ├── GrOvalRenderer.h │ │ ├── GrPaint.cpp │ │ ├── GrPath.cpp │ │ ├── GrPath.h │ │ ├── GrPathRange.cpp │ │ ├── GrPathRange.h │ │ ├── GrPathRenderer.cpp │ │ ├── GrPathRenderer.h │ │ ├── GrPathRendererChain.cpp │ │ ├── GrPathRendering.cpp │ │ ├── GrPathRendering.h │ │ ├── GrPathUtils.cpp │ │ ├── GrPathUtils.h │ │ ├── GrPictureUtils.cpp │ │ ├── GrPictureUtils.h │ │ ├── GrPlotMgr.h │ │ ├── GrProcessor.cpp │ │ ├── GrProgramElement.cpp │ │ ├── GrRODrawState.cpp │ │ ├── GrRODrawState.h │ │ ├── GrRecordReplaceDraw.cpp │ │ ├── GrRecordReplaceDraw.h │ │ ├── GrRectanizer.h │ │ ├── GrRectanizer_pow2.cpp │ │ ├── GrRectanizer_pow2.h │ │ ├── GrRectanizer_skyline.cpp │ │ ├── GrRectanizer_skyline.h │ │ ├── GrRedBlackTree.h │ │ ├── GrReducedClip.cpp │ │ ├── GrReducedClip.h │ │ ├── GrRenderTarget.cpp │ │ ├── GrResourceCache.cpp │ │ ├── GrResourceCache.h │ │ ├── GrResourceCache2.cpp │ │ ├── GrResourceCache2.h │ │ ├── GrSWMaskHelper.cpp │ │ ├── GrSWMaskHelper.h │ │ ├── GrSoftwarePathRenderer.cpp │ │ ├── GrSoftwarePathRenderer.h │ │ ├── GrStencil.cpp │ │ ├── GrStencil.h │ │ ├── GrStencilAndCoverPathRenderer.cpp │ │ ├── GrStencilAndCoverPathRenderer.h │ │ ├── GrStencilAndCoverTextContext.cpp │ │ ├── GrStencilAndCoverTextContext.h │ │ ├── GrStencilBuffer.cpp │ │ ├── GrStencilBuffer.h │ │ ├── GrStrokeInfo.h │ │ ├── GrSurface.cpp │ │ ├── GrTBSearch.h │ │ ├── GrTemplates.h │ │ ├── GrTest.cpp │ │ ├── GrTest.h │ │ ├── GrTextContext.cpp │ │ ├── GrTextContext.h │ │ ├── GrTextStrike.cpp │ │ ├── GrTextStrike.h │ │ ├── GrTextStrike_impl.h │ │ ├── GrTexture.cpp │ │ ├── GrTextureAccess.cpp │ │ ├── GrTraceMarker.cpp │ │ ├── GrTraceMarker.h │ │ ├── GrTracing.h │ │ ├── GrVertexBuffer.h │ │ ├── SkGpuDevice.cpp │ │ ├── SkGpuDevice.h │ │ ├── SkGr.cpp │ │ ├── SkGrPixelRef.cpp │ │ ├── SkGrTexturePixelRef.cpp │ │ ├── effects │ │ │ ├── Gr1DKernelEffect.h │ │ │ ├── GrBezierEffect.cpp │ │ │ ├── GrBezierEffect.h │ │ │ ├── GrBicubicEffect.cpp │ │ │ ├── GrBicubicEffect.h │ │ │ ├── GrConfigConversionEffect.cpp │ │ │ ├── GrConfigConversionEffect.h │ │ │ ├── GrConvexPolyEffect.cpp │ │ │ ├── GrConvexPolyEffect.h │ │ │ ├── GrConvolutionEffect.cpp │ │ │ ├── GrConvolutionEffect.h │ │ │ ├── GrCustomCoordsTextureEffect.cpp │ │ │ ├── GrCustomCoordsTextureEffect.h │ │ │ ├── GrDashingEffect.cpp │ │ │ ├── GrDashingEffect.h │ │ │ ├── GrDistanceFieldTextureEffect.cpp │ │ │ ├── GrDistanceFieldTextureEffect.h │ │ │ ├── GrDitherEffect.cpp │ │ │ ├── GrDitherEffect.h │ │ │ ├── GrMatrixConvolutionEffect.cpp │ │ │ ├── GrMatrixConvolutionEffect.h │ │ │ ├── GrOvalEffect.cpp │ │ │ ├── GrOvalEffect.h │ │ │ ├── GrRRectEffect.cpp │ │ │ ├── GrRRectEffect.h │ │ │ ├── GrSimpleTextureEffect.cpp │ │ │ ├── GrSimpleTextureEffect.h │ │ │ ├── GrSingleTextureEffect.cpp │ │ │ ├── GrSingleTextureEffect.h │ │ │ ├── GrTextureDomain.cpp │ │ │ ├── GrTextureDomain.h │ │ │ ├── GrTextureStripAtlas.cpp │ │ │ ├── GrTextureStripAtlas.h │ │ │ ├── GrYUVtoRGBEffect.cpp │ │ │ └── GrYUVtoRGBEffect.h │ │ └── gl │ │ │ ├── GrGLAssembleInterface.cpp │ │ │ ├── GrGLAssembleInterface.h │ │ │ ├── GrGLBufferImpl.cpp │ │ │ ├── GrGLBufferImpl.h │ │ │ ├── GrGLCaps.cpp │ │ │ ├── GrGLCaps.h │ │ │ ├── GrGLContext.cpp │ │ │ ├── GrGLContext.h │ │ │ ├── GrGLCreateNativeInterface_none.cpp │ │ │ ├── GrGLCreateNullInterface.cpp │ │ │ ├── GrGLDefaultInterface_native.cpp │ │ │ ├── GrGLDefaultInterface_none.cpp │ │ │ ├── GrGLDefines.h │ │ │ ├── GrGLExtensions.cpp │ │ │ ├── GrGLGeometryProcessor.h │ │ │ ├── GrGLIRect.h │ │ │ ├── GrGLIndexBuffer.cpp │ │ │ ├── GrGLIndexBuffer.h │ │ │ ├── GrGLInterface.cpp │ │ │ ├── GrGLNameAllocator.cpp │ │ │ ├── GrGLNameAllocator.h │ │ │ ├── GrGLNoOpInterface.cpp │ │ │ ├── GrGLNoOpInterface.h │ │ │ ├── GrGLPath.cpp │ │ │ ├── GrGLPath.h │ │ │ ├── GrGLPathRange.cpp │ │ │ ├── GrGLPathRange.h │ │ │ ├── GrGLPathRendering.cpp │ │ │ ├── GrGLPathRendering.h │ │ │ ├── GrGLProcessor.h │ │ │ ├── GrGLProgram.cpp │ │ │ ├── GrGLProgram.h │ │ │ ├── GrGLProgramDataManager.cpp │ │ │ ├── GrGLProgramDataManager.h │ │ │ ├── GrGLProgramDesc.cpp │ │ │ ├── GrGLProgramDesc.h │ │ │ ├── GrGLProgramEffects.cpp │ │ │ ├── GrGLProgramEffects.h │ │ │ ├── GrGLRenderTarget.cpp │ │ │ ├── GrGLRenderTarget.h │ │ │ ├── GrGLSL.cpp │ │ │ ├── GrGLSL.h │ │ │ ├── GrGLSL_impl.h │ │ │ ├── GrGLShaderVar.h │ │ │ ├── GrGLStencilBuffer.cpp │ │ │ ├── GrGLStencilBuffer.h │ │ │ ├── GrGLTexture.cpp │ │ │ ├── GrGLTexture.h │ │ │ ├── GrGLUniformHandle.h │ │ │ ├── GrGLUtil.cpp │ │ │ ├── GrGLUtil.h │ │ │ ├── GrGLVertexArray.cpp │ │ │ ├── GrGLVertexArray.h │ │ │ ├── GrGLVertexBuffer.cpp │ │ │ ├── GrGLVertexBuffer.h │ │ │ ├── GrGpuGL.cpp │ │ │ ├── GrGpuGL.h │ │ │ ├── GrGpuGL_program.cpp │ │ │ ├── SkGLContextHelper.cpp │ │ │ ├── SkNullGLContext.cpp │ │ │ ├── android │ │ │ ├── GrGLCreateNativeInterface_android.cpp │ │ │ └── SkNativeGLContext_android.cpp │ │ │ ├── angle │ │ │ ├── GrGLCreateANGLEInterface.cpp │ │ │ └── SkANGLEGLContext.cpp │ │ │ ├── builders │ │ │ ├── GrGLFragmentOnlyProgramBuilder.cpp │ │ │ ├── GrGLFragmentOnlyProgramBuilder.h │ │ │ ├── GrGLFragmentShaderBuilder.cpp │ │ │ ├── GrGLFragmentShaderBuilder.h │ │ │ ├── GrGLFullProgramBuilder.cpp │ │ │ ├── GrGLFullProgramBuilder.h │ │ │ ├── GrGLGeometryShaderBuilder.cpp │ │ │ ├── GrGLGeometryShaderBuilder.h │ │ │ ├── GrGLProgramBuilder.cpp │ │ │ ├── GrGLProgramBuilder.h │ │ │ ├── GrGLSLPrettyPrint.cpp │ │ │ ├── GrGLShaderBuilder.cpp │ │ │ ├── GrGLShaderBuilder.h │ │ │ ├── GrGLShaderStringBuilder.cpp │ │ │ ├── GrGLShaderStringBuilder.h │ │ │ ├── GrGLVertexShaderBuilder.cpp │ │ │ └── GrGLVertexShaderBuilder.h │ │ │ ├── debug │ │ │ ├── GrBufferObj.cpp │ │ │ ├── GrBufferObj.h │ │ │ ├── GrDebugGL.cpp │ │ │ ├── GrDebugGL.h │ │ │ ├── GrFBBindableObj.h │ │ │ ├── GrFakeRefObj.h │ │ │ ├── GrFrameBufferObj.cpp │ │ │ ├── GrFrameBufferObj.h │ │ │ ├── GrGLCreateDebugInterface.cpp │ │ │ ├── GrProgramObj.cpp │ │ │ ├── GrProgramObj.h │ │ │ ├── GrRenderBufferObj.h │ │ │ ├── GrShaderObj.cpp │ │ │ ├── GrShaderObj.h │ │ │ ├── GrTextureObj.cpp │ │ │ ├── GrTextureObj.h │ │ │ ├── GrTextureUnitObj.cpp │ │ │ ├── GrTextureUnitObj.h │ │ │ ├── GrVertexArrayObj.h │ │ │ └── SkDebugGLContext.cpp │ │ │ ├── iOS │ │ │ ├── GrGLCreateNativeInterface_iOS.cpp │ │ │ └── SkNativeGLContext_iOS.mm │ │ │ ├── mac │ │ │ ├── GrGLCreateNativeInterface_mac.cpp │ │ │ └── SkNativeGLContext_mac.cpp │ │ │ ├── mesa │ │ │ ├── GrGLCreateMesaInterface.cpp │ │ │ ├── SkMesaGLContext.cpp │ │ │ └── osmesa_wrapper.h │ │ │ ├── nacl │ │ │ └── SkNativeGLContext_nacl.cpp │ │ │ ├── unix │ │ │ ├── GrGLCreateNativeInterface_unix.cpp │ │ │ └── SkNativeGLContext_unix.cpp │ │ │ └── win │ │ │ ├── GrGLCreateNativeInterface_win.cpp │ │ │ └── SkNativeGLContext_win.cpp │ │ ├── image │ │ ├── SkImage.cpp │ │ ├── SkImagePriv.cpp │ │ ├── SkImagePriv.h │ │ ├── SkImage_Base.h │ │ ├── SkImage_Gpu.cpp │ │ ├── SkImage_Raster.cpp │ │ ├── SkSurface.cpp │ │ ├── SkSurface_Base.h │ │ ├── SkSurface_Gpu.cpp │ │ └── SkSurface_Raster.cpp │ │ ├── images │ │ ├── SkDecodingImageGenerator.cpp │ │ ├── SkForceLinking.cpp │ │ ├── SkImageDecoder.cpp │ │ ├── SkImageDecoder_FactoryDefault.cpp │ │ ├── SkImageDecoder_FactoryRegistrar.cpp │ │ ├── SkImageDecoder_astc.cpp │ │ ├── SkImageDecoder_ktx.cpp │ │ ├── SkImageDecoder_libbmp.cpp │ │ ├── SkImageDecoder_libgif.cpp │ │ ├── SkImageDecoder_libico.cpp │ │ ├── SkImageDecoder_libjpeg.cpp │ │ ├── SkImageDecoder_libpng.cpp │ │ ├── SkImageDecoder_libwebp.cpp │ │ ├── SkImageDecoder_pkm.cpp │ │ ├── SkImageDecoder_wbmp.cpp │ │ ├── SkImageEncoder.cpp │ │ ├── SkImageEncoder_Factory.cpp │ │ ├── SkImageEncoder_argb.cpp │ │ ├── SkJpegUtility.cpp │ │ ├── SkJpegUtility.h │ │ ├── SkMovie.cpp │ │ ├── SkMovie_gif.cpp │ │ ├── SkPageFlipper.cpp │ │ ├── SkScaledBitmapSampler.cpp │ │ ├── SkScaledBitmapSampler.h │ │ ├── bmpdecoderhelper.cpp │ │ ├── bmpdecoderhelper.h │ │ └── transform_scanline.h │ │ ├── lazy │ │ ├── SkCachingPixelRef.cpp │ │ ├── SkCachingPixelRef.h │ │ ├── SkDiscardableMemoryPool.cpp │ │ ├── SkDiscardableMemoryPool.h │ │ ├── SkDiscardablePixelRef.cpp │ │ └── SkDiscardablePixelRef.h │ │ ├── opts │ │ ├── SkBitmapFilter_opts_SSE2.cpp │ │ ├── SkBitmapFilter_opts_SSE2.h │ │ ├── SkBitmapProcState_arm_neon.cpp │ │ ├── SkBitmapProcState_filter_neon.h │ │ ├── SkBitmapProcState_matrixProcs_neon.cpp │ │ ├── SkBitmapProcState_matrix_neon.h │ │ ├── SkBitmapProcState_opts_SSE2.cpp │ │ ├── SkBitmapProcState_opts_SSE2.h │ │ ├── SkBitmapProcState_opts_SSSE3.cpp │ │ ├── SkBitmapProcState_opts_SSSE3.h │ │ ├── SkBitmapProcState_opts_arm.cpp │ │ ├── SkBitmapProcState_opts_mips_dsp.cpp │ │ ├── SkBitmapProcState_opts_none.cpp │ │ ├── SkBlitMask_opts_arm.cpp │ │ ├── SkBlitMask_opts_arm_neon.cpp │ │ ├── SkBlitMask_opts_arm_neon.h │ │ ├── SkBlitMask_opts_none.cpp │ │ ├── SkBlitRect_opts_SSE2.cpp │ │ ├── SkBlitRect_opts_SSE2.h │ │ ├── SkBlitRow_opts_SSE2.cpp │ │ ├── SkBlitRow_opts_SSE2.h │ │ ├── SkBlitRow_opts_SSE4.h │ │ ├── SkBlitRow_opts_SSE4_asm.S │ │ ├── SkBlitRow_opts_SSE4_x64_asm.S │ │ ├── SkBlitRow_opts_arm.cpp │ │ ├── SkBlitRow_opts_arm_neon.cpp │ │ ├── SkBlitRow_opts_arm_neon.h │ │ ├── SkBlitRow_opts_mips_dsp.cpp │ │ ├── SkBlitRow_opts_none.cpp │ │ ├── SkBlurImage_opts.h │ │ ├── SkBlurImage_opts_SSE2.cpp │ │ ├── SkBlurImage_opts_SSE2.h │ │ ├── SkBlurImage_opts_SSE4.cpp │ │ ├── SkBlurImage_opts_SSE4.h │ │ ├── SkBlurImage_opts_arm.cpp │ │ ├── SkBlurImage_opts_neon.cpp │ │ ├── SkBlurImage_opts_neon.h │ │ ├── SkBlurImage_opts_none.cpp │ │ ├── SkColor_opts_SSE2.h │ │ ├── SkColor_opts_neon.h │ │ ├── SkMath_opts_SSE2.h │ │ ├── SkMorphology_opts.h │ │ ├── SkMorphology_opts_SSE2.cpp │ │ ├── SkMorphology_opts_SSE2.h │ │ ├── SkMorphology_opts_arm.cpp │ │ ├── SkMorphology_opts_neon.cpp │ │ ├── SkMorphology_opts_neon.h │ │ ├── SkMorphology_opts_none.cpp │ │ ├── SkTextureCompression_opts.h │ │ ├── SkTextureCompression_opts_arm.cpp │ │ ├── SkTextureCompression_opts_neon.cpp │ │ ├── SkTextureCompression_opts_neon.h │ │ ├── SkTextureCompression_opts_none.cpp │ │ ├── SkUtils_opts_SSE2.cpp │ │ ├── SkUtils_opts_SSE2.h │ │ ├── SkUtils_opts_arm.cpp │ │ ├── SkUtils_opts_none.cpp │ │ ├── SkXfermode_opts_SSE2.cpp │ │ ├── SkXfermode_opts_SSE2.h │ │ ├── SkXfermode_opts_arm.cpp │ │ ├── SkXfermode_opts_arm_neon.cpp │ │ ├── SkXfermode_opts_arm_neon.h │ │ ├── SkXfermode_opts_none.cpp │ │ ├── memset.arm.S │ │ ├── memset16_neon.S │ │ ├── memset32_neon.S │ │ └── opts_check_x86.cpp │ │ ├── pathops │ │ ├── SkAddIntersections.cpp │ │ ├── SkAddIntersections.h │ │ ├── SkDCubicIntersection.cpp │ │ ├── SkDCubicLineIntersection.cpp │ │ ├── SkDCubicToQuads.cpp │ │ ├── SkDLineIntersection.cpp │ │ ├── SkDQuadImplicit.cpp │ │ ├── SkDQuadImplicit.h │ │ ├── SkDQuadIntersection.cpp │ │ ├── SkDQuadLineIntersection.cpp │ │ ├── SkIntersectionHelper.h │ │ ├── SkIntersections.cpp │ │ ├── SkIntersections.h │ │ ├── SkLineParameters.h │ │ ├── SkOpAngle.cpp │ │ ├── SkOpAngle.h │ │ ├── SkOpContour.cpp │ │ ├── SkOpContour.h │ │ ├── SkOpEdgeBuilder.cpp │ │ ├── SkOpEdgeBuilder.h │ │ ├── SkOpSegment.cpp │ │ ├── SkOpSegment.h │ │ ├── SkOpSpan.h │ │ ├── SkPathOpsBounds.cpp │ │ ├── SkPathOpsBounds.h │ │ ├── SkPathOpsCommon.cpp │ │ ├── SkPathOpsCommon.h │ │ ├── SkPathOpsCubic.cpp │ │ ├── SkPathOpsCubic.h │ │ ├── SkPathOpsCurve.h │ │ ├── SkPathOpsDebug.cpp │ │ ├── SkPathOpsDebug.h │ │ ├── SkPathOpsLine.cpp │ │ ├── SkPathOpsLine.h │ │ ├── SkPathOpsOp.cpp │ │ ├── SkPathOpsPoint.cpp │ │ ├── SkPathOpsPoint.h │ │ ├── SkPathOpsQuad.cpp │ │ ├── SkPathOpsQuad.h │ │ ├── SkPathOpsRect.cpp │ │ ├── SkPathOpsRect.h │ │ ├── SkPathOpsSimplify.cpp │ │ ├── SkPathOpsTightBounds.cpp │ │ ├── SkPathOpsTriangle.cpp │ │ ├── SkPathOpsTriangle.h │ │ ├── SkPathOpsTypes.cpp │ │ ├── SkPathOpsTypes.h │ │ ├── SkPathWriter.cpp │ │ ├── SkPathWriter.h │ │ ├── SkQuarticRoot.cpp │ │ ├── SkQuarticRoot.h │ │ ├── SkReduceOrder.cpp │ │ └── SkReduceOrder.h │ │ ├── pdf │ │ ├── SkPDFCatalog.cpp │ │ ├── SkPDFCatalog.h │ │ ├── SkPDFDevice.cpp │ │ ├── SkPDFDeviceFlattener.cpp │ │ ├── SkPDFDeviceFlattener.h │ │ ├── SkPDFDocument.cpp │ │ ├── SkPDFFont.cpp │ │ ├── SkPDFFont.h │ │ ├── SkPDFFontImpl.h │ │ ├── SkPDFFormXObject.cpp │ │ ├── SkPDFFormXObject.h │ │ ├── SkPDFGraphicState.cpp │ │ ├── SkPDFGraphicState.h │ │ ├── SkPDFImage.cpp │ │ ├── SkPDFImage.h │ │ ├── SkPDFPage.cpp │ │ ├── SkPDFPage.h │ │ ├── SkPDFResourceDict.cpp │ │ ├── SkPDFResourceDict.h │ │ ├── SkPDFShader.cpp │ │ ├── SkPDFShader.h │ │ ├── SkPDFStream.cpp │ │ ├── SkPDFStream.h │ │ ├── SkPDFTypes.cpp │ │ ├── SkPDFTypes.h │ │ ├── SkPDFUtils.cpp │ │ ├── SkPDFUtils.h │ │ └── SkTSet.h │ │ ├── pipe │ │ ├── SkGPipePriv.h │ │ ├── SkGPipeRead.cpp │ │ ├── SkGPipeWrite.cpp │ │ └── utils │ │ │ ├── SamplePipeControllers.cpp │ │ │ └── SamplePipeControllers.h │ │ ├── ports │ │ ├── SkAtomics_sync.h │ │ ├── SkAtomics_win.h │ │ ├── SkBarriers_arm.h │ │ ├── SkBarriers_tsan.h │ │ ├── SkBarriers_x86.h │ │ ├── SkDebug_android.cpp │ │ ├── SkDebug_nacl.cpp │ │ ├── SkDebug_stdio.cpp │ │ ├── SkDebug_win.cpp │ │ ├── SkDiscardableMemory_none.cpp │ │ ├── SkFontConfigInterface_direct.cpp │ │ ├── SkFontConfigParser_android.cpp │ │ ├── SkFontConfigParser_android.h │ │ ├── SkFontConfigTypeface.h │ │ ├── SkFontHost_FreeType.cpp │ │ ├── SkFontHost_FreeType_common.cpp │ │ ├── SkFontHost_FreeType_common.h │ │ ├── SkFontHost_fontconfig.cpp │ │ ├── SkFontHost_linux.cpp │ │ ├── SkFontHost_mac.cpp │ │ ├── SkFontHost_none.cpp │ │ ├── SkFontHost_win.cpp │ │ ├── SkFontMgr_android.cpp │ │ ├── SkFontMgr_default_dw.cpp │ │ ├── SkFontMgr_default_gdi.cpp │ │ ├── SkFontMgr_fontconfig.cpp │ │ ├── SkFontMgr_win_dw.cpp │ │ ├── SkGlobalInitialization_chromium.cpp │ │ ├── SkGlobalInitialization_default.cpp │ │ ├── SkImageDecoder_CG.cpp │ │ ├── SkImageDecoder_WIC.cpp │ │ ├── SkImageDecoder_empty.cpp │ │ ├── SkMemory_malloc.cpp │ │ ├── SkMemory_mozalloc.cpp │ │ ├── SkMutex_pthread.h │ │ ├── SkMutex_win.h │ │ ├── SkOSFile_none.cpp │ │ ├── SkOSFile_posix.cpp │ │ ├── SkOSFile_stdio.cpp │ │ ├── SkOSFile_win.cpp │ │ ├── SkRemotableFontMgr_win_dw.cpp │ │ ├── SkScalerContext_win_dw.cpp │ │ ├── SkScalerContext_win_dw.h │ │ ├── SkTLS_none.cpp │ │ ├── SkTLS_pthread.cpp │ │ ├── SkTLS_win.cpp │ │ ├── SkTime_Unix.cpp │ │ ├── SkTime_win.cpp │ │ ├── SkTypeface_win_dw.cpp │ │ ├── SkTypeface_win_dw.h │ │ └── SkXMLParser_empty.cpp │ │ ├── sfnt │ │ ├── SkIBMFamilyClass.h │ │ ├── SkOTTableTypes.h │ │ ├── SkOTTable_EBDT.h │ │ ├── SkOTTable_EBLC.h │ │ ├── SkOTTable_EBSC.h │ │ ├── SkOTTable_OS_2.h │ │ ├── SkOTTable_OS_2_V0.h │ │ ├── SkOTTable_OS_2_V1.h │ │ ├── SkOTTable_OS_2_V2.h │ │ ├── SkOTTable_OS_2_V3.h │ │ ├── SkOTTable_OS_2_V4.h │ │ ├── SkOTTable_OS_2_VA.h │ │ ├── SkOTTable_gasp.h │ │ ├── SkOTTable_glyf.h │ │ ├── SkOTTable_head.h │ │ ├── SkOTTable_hhea.h │ │ ├── SkOTTable_loca.h │ │ ├── SkOTTable_maxp.h │ │ ├── SkOTTable_maxp_CFF.h │ │ ├── SkOTTable_maxp_TT.h │ │ ├── SkOTTable_name.cpp │ │ ├── SkOTTable_name.h │ │ ├── SkOTTable_post.h │ │ ├── SkOTUtils.cpp │ │ ├── SkOTUtils.h │ │ ├── SkPanose.h │ │ ├── SkPreprocessorSeq.h │ │ ├── SkSFNTHeader.h │ │ ├── SkTTCFHeader.h │ │ └── SkTypedEnum.h │ │ ├── svg │ │ ├── SkSVG.cpp │ │ ├── SkSVGCircle.cpp │ │ ├── SkSVGCircle.h │ │ ├── SkSVGClipPath.cpp │ │ ├── SkSVGClipPath.h │ │ ├── SkSVGDefs.cpp │ │ ├── SkSVGDefs.h │ │ ├── SkSVGElements.cpp │ │ ├── SkSVGElements.h │ │ ├── SkSVGEllipse.cpp │ │ ├── SkSVGEllipse.h │ │ ├── SkSVGFeColorMatrix.cpp │ │ ├── SkSVGFeColorMatrix.h │ │ ├── SkSVGFilter.cpp │ │ ├── SkSVGFilter.h │ │ ├── SkSVGG.cpp │ │ ├── SkSVGG.h │ │ ├── SkSVGGradient.cpp │ │ ├── SkSVGGradient.h │ │ ├── SkSVGGroup.cpp │ │ ├── SkSVGGroup.h │ │ ├── SkSVGImage.cpp │ │ ├── SkSVGImage.h │ │ ├── SkSVGLine.cpp │ │ ├── SkSVGLine.h │ │ ├── SkSVGLinearGradient.cpp │ │ ├── SkSVGLinearGradient.h │ │ ├── SkSVGMask.cpp │ │ ├── SkSVGMask.h │ │ ├── SkSVGMetadata.cpp │ │ ├── SkSVGMetadata.h │ │ ├── SkSVGPaintState.cpp │ │ ├── SkSVGParser.cpp │ │ ├── SkSVGPath.cpp │ │ ├── SkSVGPath.h │ │ ├── SkSVGPolygon.cpp │ │ ├── SkSVGPolygon.h │ │ ├── SkSVGPolyline.cpp │ │ ├── SkSVGPolyline.h │ │ ├── SkSVGRadialGradient.cpp │ │ ├── SkSVGRadialGradient.h │ │ ├── SkSVGRect.cpp │ │ ├── SkSVGRect.h │ │ ├── SkSVGSVG.cpp │ │ ├── SkSVGSVG.h │ │ ├── SkSVGStop.cpp │ │ ├── SkSVGStop.h │ │ ├── SkSVGSymbol.cpp │ │ ├── SkSVGSymbol.h │ │ ├── SkSVGText.cpp │ │ ├── SkSVGText.h │ │ ├── SkSVGUse.cpp │ │ └── SkSVGUse.h │ │ ├── utils │ │ ├── SkBase64.cpp │ │ ├── SkBase64.h │ │ ├── SkBitSet.cpp │ │ ├── SkBitSet.h │ │ ├── SkBitmapHasher.cpp │ │ ├── SkBitmapHasher.h │ │ ├── SkBoundaryPatch.cpp │ │ ├── SkCamera.cpp │ │ ├── SkCanvasStack.cpp │ │ ├── SkCanvasStack.h │ │ ├── SkCanvasStateUtils.cpp │ │ ├── SkCondVar.cpp │ │ ├── SkCondVar.h │ │ ├── SkCubicInterval.cpp │ │ ├── SkCullPoints.cpp │ │ ├── SkDashPath.cpp │ │ ├── SkDashPathPriv.h │ │ ├── SkDeferredCanvas.cpp │ │ ├── SkDumpCanvas.cpp │ │ ├── SkEventTracer.cpp │ │ ├── SkFloatUtils.h │ │ ├── SkFrontBufferedStream.cpp │ │ ├── SkGatherPixelRefsAndRects.cpp │ │ ├── SkGatherPixelRefsAndRects.h │ │ ├── SkInterpolator.cpp │ │ ├── SkLayer.cpp │ │ ├── SkLua.cpp │ │ ├── SkLuaCanvas.cpp │ │ ├── SkMD5.cpp │ │ ├── SkMD5.h │ │ ├── SkMatrix22.cpp │ │ ├── SkMatrix22.h │ │ ├── SkMatrix44.cpp │ │ ├── SkMeshUtils.cpp │ │ ├── SkNWayCanvas.cpp │ │ ├── SkNinePatch.cpp │ │ ├── SkNullCanvas.cpp │ │ ├── SkOSFile.cpp │ │ ├── SkPDFRasterizer.cpp │ │ ├── SkPDFRasterizer.h │ │ ├── SkParse.cpp │ │ ├── SkParseColor.cpp │ │ ├── SkParsePath.cpp │ │ ├── SkPatchGrid.cpp │ │ ├── SkPatchGrid.h │ │ ├── SkPatchUtils.cpp │ │ ├── SkPatchUtils.h │ │ ├── SkPathUtils.cpp │ │ ├── SkPictureUtils.cpp │ │ ├── SkProxyCanvas.cpp │ │ ├── SkRTConf.cpp │ │ ├── SkRunnable.h │ │ ├── SkSHA1.cpp │ │ ├── SkSHA1.h │ │ ├── SkTFitsIn.h │ │ ├── SkTLogic.h │ │ ├── SkTaskGroup.cpp │ │ ├── SkTaskGroup.h │ │ ├── SkTextureCompressor.cpp │ │ ├── SkTextureCompressor.h │ │ ├── SkTextureCompressor_ASTC.cpp │ │ ├── SkTextureCompressor_ASTC.h │ │ ├── SkTextureCompressor_Blitter.h │ │ ├── SkTextureCompressor_LATC.cpp │ │ ├── SkTextureCompressor_LATC.h │ │ ├── SkTextureCompressor_R11EAC.cpp │ │ ├── SkTextureCompressor_R11EAC.h │ │ ├── SkThreadUtils.h │ │ ├── SkThreadUtils_pthread.cpp │ │ ├── SkThreadUtils_pthread.h │ │ ├── SkThreadUtils_pthread_linux.cpp │ │ ├── SkThreadUtils_pthread_mach.cpp │ │ ├── SkThreadUtils_pthread_other.cpp │ │ ├── SkThreadUtils_win.cpp │ │ ├── SkThreadUtils_win.h │ │ ├── ios │ │ │ ├── SkFontHost_iOS.mm │ │ │ ├── SkImageDecoder_iOS.mm │ │ │ ├── SkOSFile_iOS.mm │ │ │ └── SkStream_NSData.mm │ │ ├── mac │ │ │ ├── SkCreateCGImageRef.cpp │ │ │ └── SkStream_mac.cpp │ │ └── win │ │ │ ├── SkAutoCoInitialize.cpp │ │ │ ├── SkDWrite.cpp │ │ │ ├── SkDWrite.h │ │ │ ├── SkDWriteFontFileStream.cpp │ │ │ ├── SkDWriteFontFileStream.h │ │ │ ├── SkDWriteGeometrySink.cpp │ │ │ ├── SkDWriteGeometrySink.h │ │ │ ├── SkHRESULT.cpp │ │ │ ├── SkIStream.cpp │ │ │ └── SkWGL_win.cpp │ │ ├── views │ │ ├── SkBGViewArtist.cpp │ │ ├── SkEvent.cpp │ │ ├── SkEventSink.cpp │ │ ├── SkOSMenu.cpp │ │ ├── SkParsePaint.cpp │ │ ├── SkProgressView.cpp │ │ ├── SkStackViewLayout.cpp │ │ ├── SkTagList.cpp │ │ ├── SkTagList.h │ │ ├── SkTextBox.cpp │ │ ├── SkTouchGesture.cpp │ │ ├── SkView.cpp │ │ ├── SkViewInflate.cpp │ │ ├── SkViewPriv.cpp │ │ ├── SkViewPriv.h │ │ ├── SkWidgets.cpp │ │ ├── SkWindow.cpp │ │ ├── animated │ │ │ ├── SkBorderView.cpp │ │ │ ├── SkImageView.cpp │ │ │ ├── SkProgressBarView.cpp │ │ │ ├── SkScrollBarView.cpp │ │ │ ├── SkStaticTextView.cpp │ │ │ └── SkWidgetViews.cpp │ │ ├── ios │ │ │ └── SkOSWindow_iOS.mm │ │ ├── mac │ │ │ ├── SampleApp-Info.plist │ │ │ ├── SampleApp.xib │ │ │ ├── SampleAppDelegate.h │ │ │ ├── SampleAppDelegate.mm │ │ │ ├── SkEventNotifier.h │ │ │ ├── SkEventNotifier.mm │ │ │ ├── SkNSView.h │ │ │ ├── SkNSView.mm │ │ │ ├── SkOSWindow_Mac.cpp │ │ │ ├── SkOSWindow_Mac.mm │ │ │ ├── SkOptionsTableView.h │ │ │ ├── SkOptionsTableView.mm │ │ │ ├── SkSampleNSView.h │ │ │ ├── SkSampleNSView.mm │ │ │ ├── SkTextFieldCell.h │ │ │ ├── SkTextFieldCell.m │ │ │ └── skia_mac.mm │ │ ├── sdl │ │ │ └── SkOSWindow_SDL.cpp │ │ ├── unix │ │ │ ├── SkOSWindow_Unix.cpp │ │ │ ├── keysym2ucs.c │ │ │ └── skia_unix.cpp │ │ └── win │ │ │ ├── SkOSWindow_win.cpp │ │ │ └── skia_win.cpp │ │ └── xml │ │ ├── SkBML_Verbs.h │ │ ├── SkBML_XMLParser.cpp │ │ ├── SkDOM.cpp │ │ ├── SkJS.cpp │ │ ├── SkJSDisplayable.cpp │ │ ├── SkXMLParser.cpp │ │ ├── SkXMLPullParser.cpp │ │ └── SkXMLWriter.cpp ├── smiley │ ├── CMakeLists.txt │ ├── SSmileyCtrl.cpp │ ├── smiley.pro │ └── smiley.vcproj ├── sqlite3 │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── carray.c │ ├── codec.c │ ├── codec.h │ ├── codecext.c │ ├── csv.c │ ├── extensionfunctions.c │ ├── fileio.c │ ├── rijndael.c │ ├── rijndael.h │ ├── series.c │ ├── sha2.c │ ├── sha2.h │ ├── shathree.c │ ├── shell.c │ ├── sqlite3.c │ ├── sqlite3.h │ ├── sqlite3.pro │ ├── sqlite3.vcproj │ ├── sqlite3ext.h │ ├── sqlite3secure.c │ ├── sqlite3userauth.h │ └── userauth.c ├── stdint │ └── stdint.h ├── third-part.pro ├── wke │ ├── include │ │ └── wke.h │ ├── readme.txt │ └── wke.7z └── zlib │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── README │ ├── adler32.c │ ├── algorithm.txt │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzio.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zconf.in.h │ ├── zlib.dsp │ ├── zlib.dsw │ ├── zlib.h │ ├── zlib.pro │ ├── zlib.sln │ ├── zlib.vcproj │ ├── zutil.c │ └── zutil.h ├── tools ├── 7-zip.dll ├── 7z.dll ├── 7z.exe ├── ConvertPlatformToXp.exe ├── mkspecs │ ├── common │ │ ├── angle.conf │ │ ├── msvc-base.conf │ │ └── msvc-desktop.conf │ ├── features │ │ ├── benchmark.prf │ │ ├── build_pass.prf │ │ ├── cmake_functions.prf │ │ ├── configure.prf │ │ ├── create_cmake.prf │ │ ├── ctest_testcase.prf │ │ ├── ctest_testcase_common.prf │ │ ├── ctest_testcase_installed.prf │ │ ├── dbusadaptors.prf │ │ ├── dbuscommon.pri │ │ ├── dbusinterfaces.prf │ │ ├── declarative_debug.prf │ │ ├── default_post.prf │ │ ├── default_pre.prf │ │ ├── designer_defines.prf │ │ ├── device_config.prf │ │ ├── egl.prf │ │ ├── exceptions.prf │ │ ├── exceptions_off.prf │ │ ├── exclusive_builds.prf │ │ ├── exclusive_builds_post.prf │ │ ├── file_copies.prf │ │ ├── gcov.prf │ │ ├── include_source_dir.prf │ │ ├── incredibuild_xge.prf │ │ ├── java.prf │ │ ├── lex.prf │ │ ├── link_ltcg.prf │ │ ├── link_pkgconfig.prf │ │ ├── ltcg.prf │ │ ├── moc.prf │ │ ├── no_debug_info.prf │ │ ├── plugin_bundle.prf │ │ ├── precompile_header.prf │ │ ├── qfeatures.prf │ │ ├── qgltf.prf │ │ ├── qlalr.prf │ │ ├── qml1_module.prf │ │ ├── qml1_plugin.prf │ │ ├── qml_debug.prf │ │ ├── qml_module.prf │ │ ├── qml_plugin.prf │ │ ├── qmltestcase.prf │ │ ├── qt.prf │ │ ├── qt_android_deps.prf │ │ ├── qt_app.prf │ │ ├── qt_build_config.prf │ │ ├── qt_build_extra.prf │ │ ├── qt_build_paths.prf │ │ ├── qt_clear_installs.prf │ │ ├── qt_common.prf │ │ ├── qt_config.prf │ │ ├── qt_docs.prf │ │ ├── qt_docs_targets.prf │ │ ├── qt_example_installs.prf │ │ ├── qt_functions.prf │ │ ├── qt_helper_lib.prf │ │ ├── qt_installs.prf │ │ ├── qt_module.prf │ │ ├── qt_module_headers.prf │ │ ├── qt_module_pris.prf │ │ ├── qt_parts.prf │ │ ├── qt_plugin.prf │ │ ├── qt_targets.prf │ │ ├── qt_tool.prf │ │ ├── resolve_config.prf │ │ ├── resolve_target.prf │ │ ├── resources.prf │ │ ├── sanitizer.prf │ │ ├── silent.prf │ │ ├── simd.prf │ │ ├── spec_post.prf │ │ ├── spec_pre.prf │ │ ├── static_runtime.prf │ │ ├── testcase.prf │ │ ├── testcase_targets.prf │ │ ├── testcocoon.prf │ │ ├── testlib_defines.prf │ │ ├── uic.prf │ │ ├── use_c_linker.prf │ │ ├── vxworks.prf │ │ ├── warn_off.prf │ │ ├── warn_on.prf │ │ ├── wayland-scanner.prf │ │ ├── win32 │ │ │ ├── console.prf │ │ │ ├── default_pre.prf │ │ │ ├── dumpcpp.prf │ │ │ ├── idcidl.prf │ │ │ ├── msvc_mp.prf │ │ │ ├── opengl.prf │ │ │ ├── openvg.prf │ │ │ ├── qt_config.prf │ │ │ ├── qt_dll.prf │ │ │ ├── rtti.prf │ │ │ ├── rtti_off.prf │ │ │ ├── separate_debug_info.prf │ │ │ ├── stl.prf │ │ │ ├── stl_off.prf │ │ │ ├── windeployqt.prf │ │ │ └── windows.prf │ │ ├── xctest.prf │ │ └── yacc.prf │ ├── qconfig.pri │ ├── win32-msvc2003 │ │ ├── qmake.conf │ │ └── qplatformdefs.h │ ├── win32-msvc2005 │ │ ├── qmake.conf │ │ └── qplatformdefs.h │ ├── win32-msvc2008 │ │ ├── qmake.conf │ │ └── qplatformdefs.h │ ├── win32-msvc2010 │ │ ├── qmake.conf │ │ └── qplatformdefs.h │ ├── win32-msvc2012 │ │ ├── qmake.conf │ │ └── qplatformdefs.h │ ├── win32-msvc2013 │ │ ├── qmake.conf │ │ └── qplatformdefs.h │ ├── win32-msvc2015 │ │ ├── qmake.conf │ │ └── qplatformdefs.h │ └── win32-msvc2017 │ │ ├── qmake.conf │ │ └── qplatformdefs.h ├── qmake.exe ├── qmake2017.exe ├── src │ ├── ConvertPlatformToXp │ │ ├── ConvertPlatformToXp.sln │ │ └── ConvertPlatformToXp │ │ │ ├── ConvertPlatformToXp.cpp │ │ │ ├── ConvertPlatformToXp.vcxproj │ │ │ ├── ConvertPlatformToXp.vcxproj.filters │ │ │ ├── ReadMe.txt │ │ │ ├── XGetopt.cpp │ │ │ ├── XGetopt.h │ │ │ ├── pugixml │ │ │ ├── pugiconfig.hpp │ │ │ ├── pugixml.cpp │ │ │ └── pugixml.hpp │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ ├── uiresImporter │ │ ├── ReadMe.txt │ │ ├── XGetopt.cpp │ │ ├── XGetopt.h │ │ ├── pugixml │ │ │ ├── pugiconfig.hpp │ │ │ ├── pugixml.cpp │ │ │ ├── pugixml.hpp │ │ │ └── readme.txt │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── uiresImporter.cpp │ │ ├── uiresImporter.sln │ │ └── uiresImporter.vcproj │ ├── uiresbuilder │ │ ├── ReadMe.txt │ │ ├── XGetopt.cpp │ │ ├── XGetopt.h │ │ ├── residbuilder.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── tinyxml │ │ │ ├── tinystr.cpp │ │ │ ├── tinystr.h │ │ │ ├── tinyxml.cpp │ │ │ ├── tinyxml.h │ │ │ ├── tinyxmlerror.cpp │ │ │ └── tinyxmlparser.cpp │ │ ├── uiresbuilder.sln │ │ └── uiresbuilder.vcproj │ └── xml2bin │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── xml2bin.cpp │ │ ├── xml2bin.rc │ │ ├── xml2bin.sln │ │ └── xml2bin.vcproj ├── uiresImporter.exe ├── uiresbuilder.exe ├── xml2bin.exe └── 如何使用cmake生成VS工程文件.md ├── utilities ├── CMakeLists.txt ├── ReadMe.txt ├── include │ ├── atl.mini │ │ ├── SComCli.h │ │ ├── SComHelper.h │ │ └── atldef.h │ ├── com-loader.hpp │ ├── gdialpha.h │ ├── helper │ │ ├── SAutoBuf.h │ │ ├── SCriticalSection.h │ │ ├── SEmptyable.hpp │ │ ├── SNoCopyable.hpp │ │ ├── SSemaphore.h │ │ └── SSharedPtr.hpp │ ├── pugixml │ │ ├── pugiconfig.hpp │ │ ├── pugixml.hpp │ │ ├── pugixml.soui.txt │ │ └── readme.txt │ ├── snew.h │ ├── sobject │ │ ├── Sobject.hpp │ │ └── sobject-i.h │ ├── soui_mem_wrapper.h │ ├── souicoll.h │ ├── string │ │ ├── strcpcvt.h │ │ └── tstring.h │ ├── trace.h │ ├── unknown │ │ ├── obj-ref-i.h │ │ └── obj-ref-impl.hpp │ ├── utilities-def.h │ ├── utilities.h │ └── wtl.mini │ │ ├── msgcrack.h │ │ └── souimisc.h ├── resource.h ├── src │ ├── gdialpha.cpp │ ├── helper │ │ ├── SAutoBuf.cpp │ │ ├── SCriticalSection.cpp │ │ └── SSemaphore.cpp │ ├── pugixml │ │ └── pugixml.cpp │ ├── sobject │ │ └── SObject.cpp │ ├── soui_mem_wrapper.cpp │ ├── string │ │ ├── strcpcvt.cpp │ │ └── tstring.cpp │ ├── trace.cpp │ └── utilities.cpp ├── utilities.pro ├── utilities.rc └── utilities.vcproj └── wizard ├── SouiDllWizard ├── 2052 │ ├── Images │ │ ├── DottedHori.gif │ │ ├── DottedVert.gif │ │ └── spacer.gif │ ├── NewStyles.css │ ├── Script.js │ ├── common.js │ └── styles.css ├── HTML │ └── 2052 │ │ ├── Advanced.htm │ │ ├── AppType.htm │ │ ├── ProjectOption.htm │ │ ├── UIFeatures.htm │ │ └── default.htm ├── Images │ ├── Caption.gif │ ├── Dialog.gif │ ├── MDITabs.gif │ ├── MFC_Color.gif │ ├── advance.gif │ └── leftbanner2.png ├── Scripts │ └── 2052 │ │ └── default.js └── Templates │ └── 2052 │ ├── AppUI.cpp │ ├── AppUI.h │ ├── MainDlg.cpp │ ├── MainDlg.h │ ├── ReadMe.txt │ ├── Templates.inf │ ├── demo.cpp │ ├── demo.rc │ ├── license.txt │ ├── porjectTemplates │ ├── 2010 │ │ └── default.vcxproj │ ├── 2012 │ │ └── default.vcxproj │ ├── 2013 │ │ └── default.vcxproj │ ├── 2015 │ │ └── default.vcxproj │ ├── 2017 │ │ └── default.vcxproj │ ├── 2019 │ │ └── default.vcxproj │ └── 2022 │ │ └── default.vcxproj │ ├── porjectTemplatesDefault │ ├── 2010 │ │ └── default.vcxproj │ ├── 2012 │ │ └── default.vcxproj │ ├── 2013 │ │ └── default.vcxproj │ ├── 2015 │ │ └── default.vcxproj │ ├── 2017 │ │ └── default.vcxproj │ ├── 2019 │ │ └── default.vcxproj │ └── 2022 │ │ └── default.vcxproj │ ├── res │ └── soui_res.rc2 │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── theme_sys_res │ ├── sys_Tree_toggle.png │ ├── sys_border.png │ ├── sys_btn_close.png │ ├── sys_btn_maximize.png │ ├── sys_btn_minimize.png │ ├── sys_btn_next.png │ ├── sys_btn_prev.png │ ├── sys_btn_restore.png │ ├── sys_btn_spin.png │ ├── sys_checkbox.png │ ├── sys_dropbtn.png │ ├── sys_focus_checkbox.png │ ├── sys_focus_radio.png │ ├── sys_header.png │ ├── sys_icons.png │ ├── sys_menu_arrow.png │ ├── sys_menu_border.png │ ├── sys_menu_check.png │ ├── sys_menu_sep.png │ ├── sys_menu_skin.png │ ├── sys_prog_bar.png │ ├── sys_prog_bkgnd.png │ ├── sys_radio.png │ ├── sys_scrollbar.png │ ├── sys_slider_thumb.png │ ├── sys_split_horz.png │ ├── sys_split_vert.png │ ├── sys_tab_page.png │ ├── sys_tree_checkbox.png │ ├── sys_vert_prog_bar.png │ ├── sys_vert_prog_bkgnd.png │ ├── sys_wnd_bkgnd.png │ ├── sys_xml_editmenu.xml │ ├── sys_xml_msgbox.xml │ ├── sys_xml_skin.xml │ └── uires.idx │ ├── trayicon │ ├── SShellNofityHwnd2.cpp │ ├── SShellNofityHwnd2.h │ ├── SShellNotifyIcon.cpp │ └── SShellNotifyIcon.h │ └── uires │ ├── Translator │ ├── lang_cn.xml │ └── lang_jp.xml │ ├── image │ ├── page_icons.png │ ├── soui.ico │ ├── tab_main.png │ └── traymenu_icons.png │ ├── uidef │ └── init.xml │ ├── uires.idx │ ├── values │ ├── color.xml │ ├── skin.xml │ └── string.xml │ └── xml │ ├── dlg_main.xml │ ├── menu_tray.xml │ └── page.xml ├── SouiWizard ├── 2052 │ ├── Images │ │ ├── DottedHori.gif │ │ ├── DottedVert.gif │ │ └── spacer.gif │ ├── NewStyles.css │ ├── Script.js │ ├── common.js │ └── styles.css ├── HTML │ └── 2052 │ │ ├── Advanced.htm │ │ ├── AppType.htm │ │ ├── ProjectOption.htm │ │ ├── UIFeatures.htm │ │ └── default.htm ├── Images │ ├── Caption.gif │ ├── Dialog.gif │ ├── MDITabs.gif │ ├── MFC_Color.gif │ ├── advance.gif │ └── leftbanner2.png ├── Scripts │ └── 2052 │ │ └── default.js └── Templates │ └── 2052 │ ├── MainDlg.cpp │ ├── MainDlg.h │ ├── ReadMe.txt │ ├── Templates.inf │ ├── demo.cpp │ ├── demo.rc │ ├── license.txt │ ├── porjectTemplates │ ├── 2010 │ │ └── default.vcxproj │ ├── 2012 │ │ └── default.vcxproj │ ├── 2013 │ │ └── default.vcxproj │ ├── 2015 │ │ └── default.vcxproj │ ├── 2017 │ │ └── default.vcxproj │ ├── 2019 │ │ └── default.vcxproj │ └── 2022 │ │ └── default.vcxproj │ ├── porjectTemplatesDefault │ ├── 2010 │ │ └── default.vcxproj │ ├── 2012 │ │ └── default.vcxproj │ ├── 2013 │ │ └── default.vcxproj │ ├── 2015 │ │ └── default.vcxproj │ ├── 2017 │ │ └── default.vcxproj │ ├── 2019 │ │ └── default.vcxproj │ └── 2022 │ │ └── default.vcxproj │ ├── res │ └── soui_res.rc2 │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── theme_sys_res │ ├── sys_Tree_toggle.png │ ├── sys_border.png │ ├── sys_btn_close.png │ ├── sys_btn_maximize.png │ ├── sys_btn_minimize.png │ ├── sys_btn_next.png │ ├── sys_btn_prev.png │ ├── sys_btn_restore.png │ ├── sys_btn_spin.png │ ├── sys_checkbox.png │ ├── sys_dropbtn.png │ ├── sys_focus_checkbox.png │ ├── sys_focus_radio.png │ ├── sys_header.png │ ├── sys_icons.png │ ├── sys_menu_arrow.png │ ├── sys_menu_border.png │ ├── sys_menu_check.png │ ├── sys_menu_sep.png │ ├── sys_menu_skin.png │ ├── sys_prog_bar.png │ ├── sys_prog_bkgnd.png │ ├── sys_radio.png │ ├── sys_scrollbar.png │ ├── sys_slider_thumb.png │ ├── sys_spin_down.png │ ├── sys_spin_up.png │ ├── sys_split_horz.png │ ├── sys_split_vert.png │ ├── sys_tab_page.png │ ├── sys_tree_checkbox.png │ ├── sys_tree_lines.png │ ├── sys_vert_prog_bar.png │ ├── sys_vert_prog_bkgnd.png │ ├── sys_wnd_bkgnd.png │ ├── sys_xml_editmenu.xml │ ├── sys_xml_msgbox.xml │ ├── sys_xml_skin.xml │ └── uires.idx │ ├── trayicon │ ├── SShellNofityHwnd.cpp │ ├── SShellNofityHwnd.h │ ├── SShellNotifyIcon.cpp │ └── SShellNotifyIcon.h │ └── uires │ ├── Translator │ ├── lang_cn.xml │ └── lang_jp.xml │ ├── image │ ├── page_icons.png │ ├── soui.ico │ ├── tab_main.png │ └── traymenu_icons.png │ ├── uidef │ └── init.xml │ ├── uires.idx │ ├── values │ ├── color.xml │ ├── skin.xml │ └── string.xml │ └── xml │ ├── dlg_main.xml │ ├── menu_tray.xml │ └── page.xml ├── entry ├── Soui3DllWizard.ico ├── Soui3DllWizard.vsdir ├── Soui3Wizard.ico └── Soui3Wizard.vsdir ├── vs-entry ├── 2005 │ ├── Soui3DllWizard.vsz │ └── Soui3Wizard.vsz ├── 2008 │ ├── Soui3DllWizard.vsz │ └── Soui3Wizard.vsz ├── 2010 │ ├── Soui3DllWizard.vsz │ └── Soui3Wizard.vsz ├── 2012 │ ├── Soui3DllWizard.vsz │ └── Soui3Wizard.vsz ├── 2013 │ ├── Soui3DllWizard.vsz │ └── Soui3Wizard.vsz ├── 2015 │ ├── Soui3DllWizard.vsz │ └── Soui3Wizard.vsz ├── 2017 │ ├── Soui3DllWizard.vsz │ └── Soui3Wizard.vsz ├── 2019 │ ├── Soui3DllWizard.vsz │ └── Soui3Wizard.vsz └── 2022 │ ├── Soui3DllWizard.vsz │ └── Soui3Wizard.vsz ├── vs2022安装须知(重要).txt ├── vslist.ini ├── wizard.setup.exe └── wizard.setup.src ├── MainDlg.h ├── res └── wizard.setup.ico ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── wizard.setup.cpp ├── wizard.setup.h ├── wizard.setup.rc ├── wizard.setup.sln └── wizard.setup.vcproj /.github/workflows/cmaketest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/.github/workflows/cmaketest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/Build.bat -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/README.md -------------------------------------------------------------------------------- /SOUI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/CMakeLists.txt -------------------------------------------------------------------------------- /SOUI/SOUI.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/SOUI.pro -------------------------------------------------------------------------------- /SOUI/include/SApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/SApp.h -------------------------------------------------------------------------------- /SOUI/include/activex/SBStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/activex/SBStr.h -------------------------------------------------------------------------------- /SOUI/include/activex/flash10t.tlh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/activex/flash10t.tlh -------------------------------------------------------------------------------- /SOUI/include/activex/flash10t.tli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/activex/flash10t.tli -------------------------------------------------------------------------------- /SOUI/include/control/SActiveX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/control/SActiveX.h -------------------------------------------------------------------------------- /SOUI/include/control/SCalendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/control/SCalendar.h -------------------------------------------------------------------------------- /SOUI/include/control/SCaption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/control/SCaption.h -------------------------------------------------------------------------------- /SOUI/include/control/SCmnCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/control/SCmnCtrl.h -------------------------------------------------------------------------------- /SOUI/include/control/SComboBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/control/SComboBase.h -------------------------------------------------------------------------------- /SOUI/include/control/SComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/control/SComboBox.h -------------------------------------------------------------------------------- /SOUI/include/control/SComboView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/control/SComboView.h -------------------------------------------------------------------------------- /SOUI/include/control/SListbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/control/SListbox.h -------------------------------------------------------------------------------- /SOUI/include/control/SMenuBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/control/SMenuBar.h -------------------------------------------------------------------------------- /SOUI/include/control/SRealWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/control/SRealWnd.h -------------------------------------------------------------------------------- /SOUI/include/control/STabCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/control/STabCtrl.h -------------------------------------------------------------------------------- /SOUI/include/control/STree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/control/STree.h -------------------------------------------------------------------------------- /SOUI/include/core/SCaret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SCaret.h -------------------------------------------------------------------------------- /SOUI/include/core/SCmnMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SCmnMap.h -------------------------------------------------------------------------------- /SOUI/include/core/SDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SDefine.h -------------------------------------------------------------------------------- /SOUI/include/core/SHostDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SHostDialog.h -------------------------------------------------------------------------------- /SOUI/include/core/SHostMsgDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SHostMsgDef.h -------------------------------------------------------------------------------- /SOUI/include/core/SHostWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SHostWnd.h -------------------------------------------------------------------------------- /SOUI/include/core/SItemPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SItemPanel.h -------------------------------------------------------------------------------- /SOUI/include/core/SMsgLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SMsgLoop.h -------------------------------------------------------------------------------- /SOUI/include/core/SNativeWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SNativeWnd.h -------------------------------------------------------------------------------- /SOUI/include/core/SObjType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SObjType.h -------------------------------------------------------------------------------- /SOUI/include/core/SPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SPanel.h -------------------------------------------------------------------------------- /SOUI/include/core/SSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SSingleton.h -------------------------------------------------------------------------------- /SOUI/include/core/SSingleton2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SSingleton2.h -------------------------------------------------------------------------------- /SOUI/include/core/SSkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SSkin.h -------------------------------------------------------------------------------- /SOUI/include/core/SWindowMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SWindowMgr.h -------------------------------------------------------------------------------- /SOUI/include/core/SWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SWnd.h -------------------------------------------------------------------------------- /SOUI/include/core/SWndStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/core/SWndStyle.h -------------------------------------------------------------------------------- /SOUI/include/event/SEventSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/event/SEventSet.h -------------------------------------------------------------------------------- /SOUI/include/event/SEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/event/SEvents.h -------------------------------------------------------------------------------- /SOUI/include/helper/SAppDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/SAppDir.h -------------------------------------------------------------------------------- /SOUI/include/helper/SColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/SColor.h -------------------------------------------------------------------------------- /SOUI/include/helper/SDpiScale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/SDpiScale.h -------------------------------------------------------------------------------- /SOUI/include/helper/SDragWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/SDragWnd.h -------------------------------------------------------------------------------- /SOUI/include/helper/SHostMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/SHostMgr.h -------------------------------------------------------------------------------- /SOUI/include/helper/SLogDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/SLogDef.h -------------------------------------------------------------------------------- /SOUI/include/helper/SMemDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/SMemDC.h -------------------------------------------------------------------------------- /SOUI/include/helper/SMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/SMenu.h -------------------------------------------------------------------------------- /SOUI/include/helper/SMenuEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/SMenuEx.h -------------------------------------------------------------------------------- /SOUI/include/helper/SResID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/SResID.h -------------------------------------------------------------------------------- /SOUI/include/helper/STime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/STime.h -------------------------------------------------------------------------------- /SOUI/include/helper/STimerEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/STimerEx.h -------------------------------------------------------------------------------- /SOUI/include/helper/SToolTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/SToolTip.h -------------------------------------------------------------------------------- /SOUI/include/helper/SUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/SUnknown.h -------------------------------------------------------------------------------- /SOUI/include/helper/slog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/slog.h -------------------------------------------------------------------------------- /SOUI/include/helper/swndspy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/helper/swndspy.h -------------------------------------------------------------------------------- /SOUI/include/interface/slog-i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/interface/slog-i.h -------------------------------------------------------------------------------- /SOUI/include/matrix/SCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/matrix/SCamera.h -------------------------------------------------------------------------------- /SOUI/include/matrix/SFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/matrix/SFloat.h -------------------------------------------------------------------------------- /SOUI/include/matrix/SMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/matrix/SMatrix.h -------------------------------------------------------------------------------- /SOUI/include/matrix/SPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/matrix/SPoint.h -------------------------------------------------------------------------------- /SOUI/include/matrix/SRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/matrix/SRect.h -------------------------------------------------------------------------------- /SOUI/include/res.mgr/SUiDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/res.mgr/SUiDef.h -------------------------------------------------------------------------------- /SOUI/include/soui-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/soui-version.h -------------------------------------------------------------------------------- /SOUI/include/souistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/souistd.h -------------------------------------------------------------------------------- /SOUI/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/include/stdint.h -------------------------------------------------------------------------------- /SOUI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/resource.h -------------------------------------------------------------------------------- /SOUI/soui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/soui.rc -------------------------------------------------------------------------------- /SOUI/soui3.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/soui3.vcproj -------------------------------------------------------------------------------- /SOUI/src/SApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/SApp.cpp -------------------------------------------------------------------------------- /SOUI/src/activex/SAxContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/activex/SAxContainer.h -------------------------------------------------------------------------------- /SOUI/src/activex/SAxUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/activex/SAxUtil.h -------------------------------------------------------------------------------- /SOUI/src/activex/SBStr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/activex/SBStr.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SActiveX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SActiveX.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SCalendar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SCalendar.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SCaption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SCaption.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SCmnCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SCmnCtrl.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SComboBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SComboBase.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SComboBox.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SComboView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SComboView.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SDropDown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SDropDown.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SListCtrl.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SListView.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SListbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SListbox.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SMenuBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SMenuBar.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SRealWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SRealWnd.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SRichEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SRichEdit.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SScrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SScrollbar.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SSliderBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SSliderBar.cpp -------------------------------------------------------------------------------- /SOUI/src/control/SSplitWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/SSplitWnd.cpp -------------------------------------------------------------------------------- /SOUI/src/control/STabCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/STabCtrl.cpp -------------------------------------------------------------------------------- /SOUI/src/control/STileView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/STileView.cpp -------------------------------------------------------------------------------- /SOUI/src/control/STreeCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/STreeCtrl.cpp -------------------------------------------------------------------------------- /SOUI/src/control/STreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/control/STreeView.cpp -------------------------------------------------------------------------------- /SOUI/src/core/SAccelerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/core/SAccelerator.cpp -------------------------------------------------------------------------------- /SOUI/src/core/SCaret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/core/SCaret.cpp -------------------------------------------------------------------------------- /SOUI/src/core/SFocusManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/core/SFocusManager.cpp -------------------------------------------------------------------------------- /SOUI/src/core/SHostDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/core/SHostDialog.cpp -------------------------------------------------------------------------------- /SOUI/src/core/SItemPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/core/SItemPanel.cpp -------------------------------------------------------------------------------- /SOUI/src/core/SMsgLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/core/SMsgLoop.cpp -------------------------------------------------------------------------------- /SOUI/src/core/SNativeWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/core/SNativeWnd.cpp -------------------------------------------------------------------------------- /SOUI/src/core/SPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/core/SPanel.cpp -------------------------------------------------------------------------------- /SOUI/src/core/SSkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/core/SSkin.cpp -------------------------------------------------------------------------------- /SOUI/src/core/SSkinObjBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/core/SSkinObjBase.cpp -------------------------------------------------------------------------------- /SOUI/src/core/SWindowMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/core/SWindowMgr.cpp -------------------------------------------------------------------------------- /SOUI/src/core/Swnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/core/Swnd.cpp -------------------------------------------------------------------------------- /SOUI/src/core/SwndStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/core/SwndStyle.cpp -------------------------------------------------------------------------------- /SOUI/src/core/shostwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/core/shostwnd.cpp -------------------------------------------------------------------------------- /SOUI/src/event/SEventSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/event/SEventSet.cpp -------------------------------------------------------------------------------- /SOUI/src/helper/SAppDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/helper/SAppDir.cpp -------------------------------------------------------------------------------- /SOUI/src/helper/SDIBHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/helper/SDIBHelper.cpp -------------------------------------------------------------------------------- /SOUI/src/helper/SDpiScale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/helper/SDpiScale.cpp -------------------------------------------------------------------------------- /SOUI/src/helper/SDragWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/helper/SDragWnd.cpp -------------------------------------------------------------------------------- /SOUI/src/helper/SHostMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/helper/SHostMgr.cpp -------------------------------------------------------------------------------- /SOUI/src/helper/SMemDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/helper/SMemDC.cpp -------------------------------------------------------------------------------- /SOUI/src/helper/SMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/helper/SMenu.cpp -------------------------------------------------------------------------------- /SOUI/src/helper/SMenuEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/helper/SMenuEx.cpp -------------------------------------------------------------------------------- /SOUI/src/helper/STimerEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/helper/STimerEx.cpp -------------------------------------------------------------------------------- /SOUI/src/helper/SToolTip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/helper/SToolTip.cpp -------------------------------------------------------------------------------- /SOUI/src/helper/SwndFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/helper/SwndFinder.cpp -------------------------------------------------------------------------------- /SOUI/src/helper/stime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/helper/stime.cpp -------------------------------------------------------------------------------- /SOUI/src/layout/SGridLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/layout/SGridLayout.cpp -------------------------------------------------------------------------------- /SOUI/src/layout/SLayoutSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/layout/SLayoutSize.cpp -------------------------------------------------------------------------------- /SOUI/src/layout/SouiLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/layout/SouiLayout.cpp -------------------------------------------------------------------------------- /SOUI/src/matrix/SCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/matrix/SCamera.cpp -------------------------------------------------------------------------------- /SOUI/src/matrix/SMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/matrix/SMatrix.cpp -------------------------------------------------------------------------------- /SOUI/src/matrix/SPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/matrix/SPoint.cpp -------------------------------------------------------------------------------- /SOUI/src/matrix/SRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/matrix/SRect.cpp -------------------------------------------------------------------------------- /SOUI/src/res.mgr/SFontPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/res.mgr/SFontPool.cpp -------------------------------------------------------------------------------- /SOUI/src/res.mgr/SSkinPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/res.mgr/SSkinPool.cpp -------------------------------------------------------------------------------- /SOUI/src/res.mgr/SStylePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/res.mgr/SStylePool.cpp -------------------------------------------------------------------------------- /SOUI/src/res.mgr/SUiDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/SOUI/src/res.mgr/SUiDef.cpp -------------------------------------------------------------------------------- /__cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/__cmake/CMakeLists.txt -------------------------------------------------------------------------------- /__cmake/cotire.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/__cmake/cotire.cmake -------------------------------------------------------------------------------- /__cmake/global.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/__cmake/global.cmake -------------------------------------------------------------------------------- /__cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/__cmake/internal_utils.cmake -------------------------------------------------------------------------------- /__cmake/soui3-demo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/__cmake/soui3-demo.cmake -------------------------------------------------------------------------------- /clone_demos.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/clone_demos.bat -------------------------------------------------------------------------------- /common.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/common.pri -------------------------------------------------------------------------------- /components/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/CMakeLists.txt -------------------------------------------------------------------------------- /components/SIpcObject/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/SIpcObject/stdafx.h -------------------------------------------------------------------------------- /components/TaskLoop/TaskLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/TaskLoop/TaskLoop.h -------------------------------------------------------------------------------- /components/TaskLoop/TaskLoop.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/TaskLoop/TaskLoop.rc -------------------------------------------------------------------------------- /components/TaskLoop/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/TaskLoop/thread.cpp -------------------------------------------------------------------------------- /components/TaskLoop/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/TaskLoop/thread.h -------------------------------------------------------------------------------- /components/com-cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/com-cfg.h -------------------------------------------------------------------------------- /components/commask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/commask.h -------------------------------------------------------------------------------- /components/commgr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/commgr2.h -------------------------------------------------------------------------------- /components/components.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/components.pro -------------------------------------------------------------------------------- /components/log4z/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/log4z/CMakeLists.txt -------------------------------------------------------------------------------- /components/log4z/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/log4z/COPYRIGHT -------------------------------------------------------------------------------- /components/log4z/log4z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/log4z/log4z.cpp -------------------------------------------------------------------------------- /components/log4z/log4z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/log4z/log4z.h -------------------------------------------------------------------------------- /components/log4z/log4z.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/log4z/log4z.pro -------------------------------------------------------------------------------- /components/log4z/log4z.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/log4z/log4z.rc -------------------------------------------------------------------------------- /components/log4z/log4z.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/log4z/log4z.vcproj -------------------------------------------------------------------------------- /components/render-gdi/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/render-gdi/stdafx.h -------------------------------------------------------------------------------- /components/render-skia/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/render-skia/stdafx.h -------------------------------------------------------------------------------- /components/translator/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/components/translator/stdafx.h -------------------------------------------------------------------------------- /config/build.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/config/build.cfg -------------------------------------------------------------------------------- /config/build.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/config/build.cfg.in -------------------------------------------------------------------------------- /config/com-def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/config/com-def.h -------------------------------------------------------------------------------- /config/com-def.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/config/com-def.h.in -------------------------------------------------------------------------------- /config/core-def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/config/core-def.h -------------------------------------------------------------------------------- /config/core-def.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/config/core-def.h.in -------------------------------------------------------------------------------- /config/options/com-dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/config/options/com-dll.h -------------------------------------------------------------------------------- /config/options/com-lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/config/options/com-lib.h -------------------------------------------------------------------------------- /config/options/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/config/options/dll.h -------------------------------------------------------------------------------- /config/options/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/config/options/lib.h -------------------------------------------------------------------------------- /config/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/config/readme.txt -------------------------------------------------------------------------------- /controls.extend/ExtendCtrls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/ExtendCtrls.cpp -------------------------------------------------------------------------------- /controls.extend/ExtendCtrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/ExtendCtrls.h -------------------------------------------------------------------------------- /controls.extend/ExtendSkins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/ExtendSkins.cpp -------------------------------------------------------------------------------- /controls.extend/ExtendSkins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/ExtendSkins.h -------------------------------------------------------------------------------- /controls.extend/FileHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/FileHelper.h -------------------------------------------------------------------------------- /controls.extend/SAniWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SAniWindow.cpp -------------------------------------------------------------------------------- /controls.extend/SAniWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SAniWindow.h -------------------------------------------------------------------------------- /controls.extend/SAnimImg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SAnimImg.cpp -------------------------------------------------------------------------------- /controls.extend/SAnimImg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SAnimImg.h -------------------------------------------------------------------------------- /controls.extend/SAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SAnimator.h -------------------------------------------------------------------------------- /controls.extend/SButtonEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SButtonEx.cpp -------------------------------------------------------------------------------- /controls.extend/SButtonEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SButtonEx.h -------------------------------------------------------------------------------- /controls.extend/SByteArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SByteArray.cpp -------------------------------------------------------------------------------- /controls.extend/SByteArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SByteArray.h -------------------------------------------------------------------------------- /controls.extend/SCalendar2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SCalendar2.cpp -------------------------------------------------------------------------------- /controls.extend/SCalendar2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SCalendar2.h -------------------------------------------------------------------------------- /controls.extend/SChatEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SChatEdit.cpp -------------------------------------------------------------------------------- /controls.extend/SChatEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SChatEdit.h -------------------------------------------------------------------------------- /controls.extend/SCheckBox2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SCheckBox2.cpp -------------------------------------------------------------------------------- /controls.extend/SCheckBox2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SCheckBox2.h -------------------------------------------------------------------------------- /controls.extend/SComboBoxEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SComboBoxEx.cpp -------------------------------------------------------------------------------- /controls.extend/SComboBoxEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SComboBoxEx.h -------------------------------------------------------------------------------- /controls.extend/SDateTimeEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SDateTimeEdit.h -------------------------------------------------------------------------------- /controls.extend/SFadeFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SFadeFrame.cpp -------------------------------------------------------------------------------- /controls.extend/SFadeFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SFadeFrame.h -------------------------------------------------------------------------------- /controls.extend/SGroupList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SGroupList.cpp -------------------------------------------------------------------------------- /controls.extend/SGroupList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SGroupList.h -------------------------------------------------------------------------------- /controls.extend/SHexEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SHexEdit.cpp -------------------------------------------------------------------------------- /controls.extend/SHexEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SHexEdit.h -------------------------------------------------------------------------------- /controls.extend/SIECtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SIECtrl.cpp -------------------------------------------------------------------------------- /controls.extend/SIECtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SIECtrl.h -------------------------------------------------------------------------------- /controls.extend/SImageMaskWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SImageMaskWnd.h -------------------------------------------------------------------------------- /controls.extend/SImagePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SImagePlayer.h -------------------------------------------------------------------------------- /controls.extend/SItembox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SItembox.cpp -------------------------------------------------------------------------------- /controls.extend/SItembox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SItembox.h -------------------------------------------------------------------------------- /controls.extend/SListCtrlEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SListCtrlEx.cpp -------------------------------------------------------------------------------- /controls.extend/SListCtrlEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SListCtrlEx.h -------------------------------------------------------------------------------- /controls.extend/SListboxex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SListboxex.cpp -------------------------------------------------------------------------------- /controls.extend/SListboxex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SListboxex.h -------------------------------------------------------------------------------- /controls.extend/SProgressRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SProgressRing.h -------------------------------------------------------------------------------- /controls.extend/SRadioBox2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SRadioBox2.cpp -------------------------------------------------------------------------------- /controls.extend/SRadioBox2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SRadioBox2.h -------------------------------------------------------------------------------- /controls.extend/SRatingBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SRatingBar.cpp -------------------------------------------------------------------------------- /controls.extend/SRatingBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SRatingBar.h -------------------------------------------------------------------------------- /controls.extend/SRoundImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SRoundImage.cpp -------------------------------------------------------------------------------- /controls.extend/SRoundImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SRoundImage.h -------------------------------------------------------------------------------- /controls.extend/SScrollText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SScrollText.cpp -------------------------------------------------------------------------------- /controls.extend/SScrollText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SScrollText.h -------------------------------------------------------------------------------- /controls.extend/SSplitBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SSplitBar.cpp -------------------------------------------------------------------------------- /controls.extend/SSplitBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SSplitBar.h -------------------------------------------------------------------------------- /controls.extend/SStaticGdip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SStaticGdip.cpp -------------------------------------------------------------------------------- /controls.extend/SStaticGdip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SStaticGdip.h -------------------------------------------------------------------------------- /controls.extend/STabCtrl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/STabCtrl2.cpp -------------------------------------------------------------------------------- /controls.extend/STabCtrl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/STabCtrl2.h -------------------------------------------------------------------------------- /controls.extend/SText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SText.cpp -------------------------------------------------------------------------------- /controls.extend/SText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SText.h -------------------------------------------------------------------------------- /controls.extend/STreeBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/STreeBox.cpp -------------------------------------------------------------------------------- /controls.extend/STreeBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/STreeBox.h -------------------------------------------------------------------------------- /controls.extend/STurn3DView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/STurn3DView.cpp -------------------------------------------------------------------------------- /controls.extend/STurn3DView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/STurn3DView.h -------------------------------------------------------------------------------- /controls.extend/SVscrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SVscrollbar.h -------------------------------------------------------------------------------- /controls.extend/SWkeWebkit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SWkeWebkit.cpp -------------------------------------------------------------------------------- /controls.extend/SWkeWebkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/SWkeWebkit.h -------------------------------------------------------------------------------- /controls.extend/ScintillaWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/ScintillaWnd.h -------------------------------------------------------------------------------- /controls.extend/TipWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/TipWnd.cpp -------------------------------------------------------------------------------- /controls.extend/TipWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/TipWnd.h -------------------------------------------------------------------------------- /controls.extend/gif/SSkinAPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/gif/SSkinAPNG.h -------------------------------------------------------------------------------- /controls.extend/gif/SSkinAni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/gif/SSkinAni.h -------------------------------------------------------------------------------- /controls.extend/gif/SSkinGif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/gif/SSkinGif.h -------------------------------------------------------------------------------- /controls.extend/gif/SSkinPNGX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/gif/SSkinPNGX.h -------------------------------------------------------------------------------- /controls.extend/image3d/3dlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/image3d/3dlib.h -------------------------------------------------------------------------------- /controls.extend/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/readme.txt -------------------------------------------------------------------------------- /controls.extend/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/controls.extend/reg.h -------------------------------------------------------------------------------- /cpy-cfg.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/cpy-cfg.pri -------------------------------------------------------------------------------- /demo/CAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/CAdapter.h -------------------------------------------------------------------------------- /demo/CDropTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/CDropTarget.h -------------------------------------------------------------------------------- /demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/CMakeLists.txt -------------------------------------------------------------------------------- /demo/DeclareDPIAware.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/DeclareDPIAware.manifest -------------------------------------------------------------------------------- /demo/FormatMsgDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/FormatMsgDlg.cpp -------------------------------------------------------------------------------- /demo/FormatMsgDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/FormatMsgDlg.h -------------------------------------------------------------------------------- /demo/MainDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/MainDlg.cpp -------------------------------------------------------------------------------- /demo/MainDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/MainDlg.h -------------------------------------------------------------------------------- /demo/SCheckBox2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/SCheckBox2.cpp -------------------------------------------------------------------------------- /demo/SCheckBox2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/SCheckBox2.h -------------------------------------------------------------------------------- /demo/SInterpolatorView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/SInterpolatorView.cpp -------------------------------------------------------------------------------- /demo/SInterpolatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/SInterpolatorView.h -------------------------------------------------------------------------------- /demo/SMatrixWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/SMatrixWindow.cpp -------------------------------------------------------------------------------- /demo/SMatrixWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/SMatrixWindow.h -------------------------------------------------------------------------------- /demo/SPathView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/SPathView.cpp -------------------------------------------------------------------------------- /demo/SPathView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/SPathView.h -------------------------------------------------------------------------------- /demo/SmileyCreateHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/SmileyCreateHook.cpp -------------------------------------------------------------------------------- /demo/SmileyCreateHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/SmileyCreateHook.h -------------------------------------------------------------------------------- /demo/ThreadObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/ThreadObject.cpp -------------------------------------------------------------------------------- /demo/ThreadObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/ThreadObject.h -------------------------------------------------------------------------------- /demo/adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/adapter.h -------------------------------------------------------------------------------- /demo/appledock/SDesktopDock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/appledock/SDesktopDock.cpp -------------------------------------------------------------------------------- /demo/appledock/SDesktopDock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/appledock/SDesktopDock.h -------------------------------------------------------------------------------- /demo/build_rc2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/build_rc2.bat -------------------------------------------------------------------------------- /demo/clock/sclock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/clock/sclock.cpp -------------------------------------------------------------------------------- /demo/clock/sclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/clock/sclock.h -------------------------------------------------------------------------------- /demo/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/demo.cpp -------------------------------------------------------------------------------- /demo/demo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/demo.pro -------------------------------------------------------------------------------- /demo/demo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/demo.rc -------------------------------------------------------------------------------- /demo/demo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/demo.vcproj -------------------------------------------------------------------------------- /demo/filewnd/image/bkgnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/filewnd/image/bkgnd.png -------------------------------------------------------------------------------- /demo/filewnd/image/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/filewnd/image/test.gif -------------------------------------------------------------------------------- /demo/filewnd/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/filewnd/test.xml -------------------------------------------------------------------------------- /demo/gif/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/gif/0.gif -------------------------------------------------------------------------------- /demo/gif/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/gif/1.gif -------------------------------------------------------------------------------- /demo/gif/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/gif/10.gif -------------------------------------------------------------------------------- /demo/gif/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/gif/2.gif -------------------------------------------------------------------------------- /demo/gif/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/gif/3.gif -------------------------------------------------------------------------------- /demo/gif/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/gif/4.gif -------------------------------------------------------------------------------- /demo/gif/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/gif/5.gif -------------------------------------------------------------------------------- /demo/gif/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/gif/6.gif -------------------------------------------------------------------------------- /demo/gif/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/gif/7.gif -------------------------------------------------------------------------------- /demo/gif/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/gif/8.gif -------------------------------------------------------------------------------- /demo/gif/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/gif/9.gif -------------------------------------------------------------------------------- /demo/magnet/MagnetFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/magnet/MagnetFrame.cpp -------------------------------------------------------------------------------- /demo/magnet/MagnetFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/magnet/MagnetFrame.h -------------------------------------------------------------------------------- /demo/qrcode/QR_Encode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/qrcode/QR_Encode.cpp -------------------------------------------------------------------------------- /demo/qrcode/QR_Encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/qrcode/QR_Encode.h -------------------------------------------------------------------------------- /demo/qrcode/SQrCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/qrcode/SQrCtrl.cpp -------------------------------------------------------------------------------- /demo/qrcode/SQrCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/qrcode/SQrCtrl.h -------------------------------------------------------------------------------- /demo/res/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/res/resource.h -------------------------------------------------------------------------------- /demo/res/soui_res.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/res/soui_res.rc2 -------------------------------------------------------------------------------- /demo/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/resource.h -------------------------------------------------------------------------------- /demo/skin/SDemoSkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/skin/SDemoSkin.cpp -------------------------------------------------------------------------------- /demo/skin/SDemoSkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/skin/SDemoSkin.h -------------------------------------------------------------------------------- /demo/skin/SSkinLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/skin/SSkinLoader.cpp -------------------------------------------------------------------------------- /demo/skin/SSkinLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/skin/SSkinLoader.h -------------------------------------------------------------------------------- /demo/skin/SetSkinWnd2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/skin/SetSkinWnd2.cpp -------------------------------------------------------------------------------- /demo/skin/SetSkinWnd2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/skin/SetSkinWnd2.h -------------------------------------------------------------------------------- /demo/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/stdafx.h -------------------------------------------------------------------------------- /demo/themes/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/1.png -------------------------------------------------------------------------------- /demo/themes/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/10.png -------------------------------------------------------------------------------- /demo/themes/10fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/10fix.png -------------------------------------------------------------------------------- /demo/themes/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/11.png -------------------------------------------------------------------------------- /demo/themes/11fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/11fix.png -------------------------------------------------------------------------------- /demo/themes/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/12.png -------------------------------------------------------------------------------- /demo/themes/12fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/12fix.png -------------------------------------------------------------------------------- /demo/themes/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/13.png -------------------------------------------------------------------------------- /demo/themes/13fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/13fix.png -------------------------------------------------------------------------------- /demo/themes/14.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/14.PNG -------------------------------------------------------------------------------- /demo/themes/14fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/14fix.png -------------------------------------------------------------------------------- /demo/themes/1fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/1fix.png -------------------------------------------------------------------------------- /demo/themes/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/2.png -------------------------------------------------------------------------------- /demo/themes/2fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/2fix.png -------------------------------------------------------------------------------- /demo/themes/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/3.png -------------------------------------------------------------------------------- /demo/themes/3fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/3fix.png -------------------------------------------------------------------------------- /demo/themes/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/4.png -------------------------------------------------------------------------------- /demo/themes/4fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/4fix.png -------------------------------------------------------------------------------- /demo/themes/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/5.png -------------------------------------------------------------------------------- /demo/themes/5fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/5fix.png -------------------------------------------------------------------------------- /demo/themes/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/6.png -------------------------------------------------------------------------------- /demo/themes/6fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/6fix.png -------------------------------------------------------------------------------- /demo/themes/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/7.png -------------------------------------------------------------------------------- /demo/themes/7fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/7fix.png -------------------------------------------------------------------------------- /demo/themes/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/8.png -------------------------------------------------------------------------------- /demo/themes/8fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/8fix.png -------------------------------------------------------------------------------- /demo/themes/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/9.png -------------------------------------------------------------------------------- /demo/themes/9fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/9fix.png -------------------------------------------------------------------------------- /demo/themes/skin1/uires.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/skin1/uires.idx -------------------------------------------------------------------------------- /demo/themes/skin1/xml/skin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/skin1/xml/skin.xml -------------------------------------------------------------------------------- /demo/themes/skin2/uires.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/skin2/uires.idx -------------------------------------------------------------------------------- /demo/themes/skin2/xml/skin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/skin2/xml/skin.xml -------------------------------------------------------------------------------- /demo/themes/skin3/uires.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/skin3/uires.idx -------------------------------------------------------------------------------- /demo/themes/skin3/xml/skin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/skin3/xml/skin.xml -------------------------------------------------------------------------------- /demo/themes/themes_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/themes/themes_config.xml -------------------------------------------------------------------------------- /demo/uianimation/UIAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uianimation/UIAnimation.h -------------------------------------------------------------------------------- /demo/uires.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires.zip -------------------------------------------------------------------------------- /demo/uires/anim/alpha_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/anim/alpha_in.xml -------------------------------------------------------------------------------- /demo/uires/anim/alpha_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/anim/alpha_out.xml -------------------------------------------------------------------------------- /demo/uires/anim/anihost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/anim/anihost.xml -------------------------------------------------------------------------------- /demo/uires/anim/love.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/anim/love.xml -------------------------------------------------------------------------------- /demo/uires/anim/rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/anim/rotate.xml -------------------------------------------------------------------------------- /demo/uires/anim/scale_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/anim/scale_in.xml -------------------------------------------------------------------------------- /demo/uires/anim/scale_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/anim/scale_out.xml -------------------------------------------------------------------------------- /demo/uires/anim/slide_hide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/anim/slide_hide.xml -------------------------------------------------------------------------------- /demo/uires/anim/slide_show.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/anim/slide_show.xml -------------------------------------------------------------------------------- /demo/uires/bkimg/10fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/10fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/11fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/11fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/12fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/12fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/13fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/13fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/14fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/14fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/15fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/15fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/16fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/16fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/17fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/17fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/18fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/18fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/1fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/1fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/2fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/2fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/3fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/3fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/4fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/4fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/5fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/5fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/6fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/6fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/7fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/7fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/8fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/8fix.png -------------------------------------------------------------------------------- /demo/uires/bkimg/9fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/bkimg/9fix.png -------------------------------------------------------------------------------- /demo/uires/image/021.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/021.ani -------------------------------------------------------------------------------- /demo/uires/image/MM/Qme.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/MM/Qme.ico -------------------------------------------------------------------------------- /demo/uires/image/MM/Qme@2x.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/MM/Qme@2x.ico -------------------------------------------------------------------------------- /demo/uires/image/MM/away.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/MM/away.ico -------------------------------------------------------------------------------- /demo/uires/image/MM/away@2x.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/MM/away@2x.ico -------------------------------------------------------------------------------- /demo/uires/image/MM/busy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/MM/busy.ico -------------------------------------------------------------------------------- /demo/uires/image/MM/busy@2x.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/MM/busy@2x.ico -------------------------------------------------------------------------------- /demo/uires/image/MM/mute.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/MM/mute.ico -------------------------------------------------------------------------------- /demo/uires/image/MM/mute@2x.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/MM/mute@2x.ico -------------------------------------------------------------------------------- /demo/uires/image/MM/offline.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/MM/offline.ico -------------------------------------------------------------------------------- /demo/uires/image/TreeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/TreeIcon.png -------------------------------------------------------------------------------- /demo/uires/image/Tulips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/Tulips.png -------------------------------------------------------------------------------- /demo/uires/image/animode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/animode.png -------------------------------------------------------------------------------- /demo/uires/image/apng_haha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/apng_haha.png -------------------------------------------------------------------------------- /demo/uires/image/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/avatar.png -------------------------------------------------------------------------------- /demo/uires/image/bk_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/bk_shadow.png -------------------------------------------------------------------------------- /demo/uires/image/btn_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/btn_expand.png -------------------------------------------------------------------------------- /demo/uires/image/btn_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/btn_menu.png -------------------------------------------------------------------------------- /demo/uires/image/btn_skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/btn_skin.png -------------------------------------------------------------------------------- /demo/uires/image/btn_skin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/btn_skin1.png -------------------------------------------------------------------------------- /demo/uires/image/busy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/busy1.png -------------------------------------------------------------------------------- /demo/uires/image/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/coin.png -------------------------------------------------------------------------------- /demo/uires/image/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/contacts.png -------------------------------------------------------------------------------- /demo/uires/image/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/girl.png -------------------------------------------------------------------------------- /demo/uires/image/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/group.png -------------------------------------------------------------------------------- /demo/uires/image/horse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/horse.gif -------------------------------------------------------------------------------- /demo/uires/image/hscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/hscrollbar.png -------------------------------------------------------------------------------- /demo/uires/image/icon/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/icon/1.png -------------------------------------------------------------------------------- /demo/uires/image/icon/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/icon/2.png -------------------------------------------------------------------------------- /demo/uires/image/icon/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/icon/3.png -------------------------------------------------------------------------------- /demo/uires/image/icon/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/icon/4.png -------------------------------------------------------------------------------- /demo/uires/image/icon/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/icon/5.png -------------------------------------------------------------------------------- /demo/uires/image/icon/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/icon/6.png -------------------------------------------------------------------------------- /demo/uires/image/icon/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/icon/7.png -------------------------------------------------------------------------------- /demo/uires/image/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/icons.png -------------------------------------------------------------------------------- /demo/uires/image/img_busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/img_busy.png -------------------------------------------------------------------------------- /demo/uires/image/img_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/img_logo.ico -------------------------------------------------------------------------------- /demo/uires/image/item_bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/item_bk.png -------------------------------------------------------------------------------- /demo/uires/image/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/love.png -------------------------------------------------------------------------------- /demo/uires/image/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/mask.png -------------------------------------------------------------------------------- /demo/uires/image/menuborder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/menuborder.png -------------------------------------------------------------------------------- /demo/uires/image/menuskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/menuskin.png -------------------------------------------------------------------------------- /demo/uires/image/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/message.png -------------------------------------------------------------------------------- /demo/uires/image/page_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/page_icons.png -------------------------------------------------------------------------------- /demo/uires/image/penguin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/penguin.gif -------------------------------------------------------------------------------- /demo/uires/image/propswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/propswitch.png -------------------------------------------------------------------------------- /demo/uires/image/soui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/soui.png -------------------------------------------------------------------------------- /demo/uires/image/tab_common.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/tab_common.png -------------------------------------------------------------------------------- /demo/uires/image/tab_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/tab_left.png -------------------------------------------------------------------------------- /demo/uires/image/tab_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/tab_main.png -------------------------------------------------------------------------------- /demo/uires/image/thDKT76T9X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/thDKT76T9X.png -------------------------------------------------------------------------------- /demo/uires/image/tip_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/tip_bg.png -------------------------------------------------------------------------------- /demo/uires/image/vscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/vscrollbar.png -------------------------------------------------------------------------------- /demo/uires/image/win.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/image/win.gif -------------------------------------------------------------------------------- /demo/uires/lua/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/lua/test.lua -------------------------------------------------------------------------------- /demo/uires/rtf/RTF测试.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/rtf/RTF测试.rtf -------------------------------------------------------------------------------- /demo/uires/svg/tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/svg/tiger.svg -------------------------------------------------------------------------------- /demo/uires/uidef/init.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/uidef/init.xml -------------------------------------------------------------------------------- /demo/uires/uires.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/uires.idx -------------------------------------------------------------------------------- /demo/uires/valueAni/alpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/valueAni/alpha.xml -------------------------------------------------------------------------------- /demo/uires/valueAni/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/valueAni/color.xml -------------------------------------------------------------------------------- /demo/uires/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/values/color.xml -------------------------------------------------------------------------------- /demo/uires/values/skin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/values/skin.xml -------------------------------------------------------------------------------- /demo/uires/values/string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/values/string.xml -------------------------------------------------------------------------------- /demo/uires/values/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/values/template.xml -------------------------------------------------------------------------------- /demo/uires/xml/calendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/calendar.xml -------------------------------------------------------------------------------- /demo/uires/xml/dlg_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/dlg_main.xml -------------------------------------------------------------------------------- /demo/uires/xml/dlg_set_skin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/dlg_set_skin.xml -------------------------------------------------------------------------------- /demo/uires/xml/dlg_skiatext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/dlg_skiatext.xml -------------------------------------------------------------------------------- /demo/uires/xml/dlg_skinset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/dlg_skinset.xml -------------------------------------------------------------------------------- /demo/uires/xml/dlg_tip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/dlg_tip.xml -------------------------------------------------------------------------------- /demo/uires/xml/love.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/love.xml -------------------------------------------------------------------------------- /demo/uires/xml/menu_lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/menu_lv.xml -------------------------------------------------------------------------------- /demo/uires/xml/menu_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/menu_test.xml -------------------------------------------------------------------------------- /demo/uires/xml/menuex_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/menuex_test.xml -------------------------------------------------------------------------------- /demo/uires/xml/page_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/page_about.xml -------------------------------------------------------------------------------- /demo/uires/xml/page_ani3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/page_ani3.xml -------------------------------------------------------------------------------- /demo/uires/xml/page_ctrls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/page_ctrls.xml -------------------------------------------------------------------------------- /demo/uires/xml/page_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/page_layout.xml -------------------------------------------------------------------------------- /demo/uires/xml/page_misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/page_misc.xml -------------------------------------------------------------------------------- /demo/uires/xml/page_script.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/page_script.xml -------------------------------------------------------------------------------- /demo/uires/xml/page_skia.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/page_skia.xml -------------------------------------------------------------------------------- /demo/uires/xml/page_webkit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/page_webkit.xml -------------------------------------------------------------------------------- /demo/uires/xml/treectrl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/uires/xml/treectrl.xml -------------------------------------------------------------------------------- /demo/wtlhelper/whwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo/wtlhelper/whwindow.h -------------------------------------------------------------------------------- /demo_com.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/demo_com.pri -------------------------------------------------------------------------------- /doc/FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/FAQ.txt -------------------------------------------------------------------------------- /doc/SOUI属性手册.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/SOUI属性手册.chm -------------------------------------------------------------------------------- /doc/SOUI用户使用手册.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/SOUI用户使用手册.pdf -------------------------------------------------------------------------------- /doc/Soui属性列表.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/Soui属性列表.html -------------------------------------------------------------------------------- /doc/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/build.md -------------------------------------------------------------------------------- /doc/cmake/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/cmake/01.png -------------------------------------------------------------------------------- /doc/cmake/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/cmake/02.png -------------------------------------------------------------------------------- /doc/cmake/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/cmake/03.png -------------------------------------------------------------------------------- /doc/cmake/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/cmake/04.png -------------------------------------------------------------------------------- /doc/cmake/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/cmake/05.png -------------------------------------------------------------------------------- /doc/cmake/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/cmake/06.png -------------------------------------------------------------------------------- /doc/cmake/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/cmake/07.png -------------------------------------------------------------------------------- /doc/demo_png/souidemo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/demo_png/souidemo1.png -------------------------------------------------------------------------------- /doc/demo_png/souidemo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/demo_png/souidemo2.png -------------------------------------------------------------------------------- /doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/logo.png -------------------------------------------------------------------------------- /doc/soui 的静态编译.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/soui 的静态编译.pdf -------------------------------------------------------------------------------- /doc/soui属性列表.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/doc/soui属性列表.xml -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/license.txt -------------------------------------------------------------------------------- /products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/products.md -------------------------------------------------------------------------------- /soui-sys-resource/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/soui-sys-resource/resource.h -------------------------------------------------------------------------------- /soui.08.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/soui.08.sln -------------------------------------------------------------------------------- /soui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/soui.pro -------------------------------------------------------------------------------- /souiprosubdir.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/souiprosubdir.xml -------------------------------------------------------------------------------- /third-part/7z/7z.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/7z.pro -------------------------------------------------------------------------------- /third-part/7z/7z.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/7z.vcproj -------------------------------------------------------------------------------- /third-part/7z/Asm/x86/7zAsm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/Asm/x86/7zAsm.asm -------------------------------------------------------------------------------- /third-part/7z/C/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7z.h -------------------------------------------------------------------------------- /third-part/7z/C/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zAlloc.c -------------------------------------------------------------------------------- /third-part/7z/C/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zAlloc.h -------------------------------------------------------------------------------- /third-part/7z/C/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zArcIn.c -------------------------------------------------------------------------------- /third-part/7z/C/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zBuf.c -------------------------------------------------------------------------------- /third-part/7z/C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zBuf.h -------------------------------------------------------------------------------- /third-part/7z/C/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zBuf2.c -------------------------------------------------------------------------------- /third-part/7z/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zCrc.c -------------------------------------------------------------------------------- /third-part/7z/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zCrc.h -------------------------------------------------------------------------------- /third-part/7z/C/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zCrcOpt.c -------------------------------------------------------------------------------- /third-part/7z/C/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zDec.c -------------------------------------------------------------------------------- /third-part/7z/C/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zFile.c -------------------------------------------------------------------------------- /third-part/7z/C/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zFile.h -------------------------------------------------------------------------------- /third-part/7z/C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zStream.c -------------------------------------------------------------------------------- /third-part/7z/C/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zTypes.h -------------------------------------------------------------------------------- /third-part/7z/C/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zVersion.h -------------------------------------------------------------------------------- /third-part/7z/C/7zVersion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/7zVersion.rc -------------------------------------------------------------------------------- /third-part/7z/C/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Aes.c -------------------------------------------------------------------------------- /third-part/7z/C/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Aes.h -------------------------------------------------------------------------------- /third-part/7z/C/AesOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/AesOpt.c -------------------------------------------------------------------------------- /third-part/7z/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Alloc.c -------------------------------------------------------------------------------- /third-part/7z/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Alloc.h -------------------------------------------------------------------------------- /third-part/7z/C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Bcj2.c -------------------------------------------------------------------------------- /third-part/7z/C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Bcj2.h -------------------------------------------------------------------------------- /third-part/7z/C/Bcj2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Bcj2Enc.c -------------------------------------------------------------------------------- /third-part/7z/C/Blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Blake2.h -------------------------------------------------------------------------------- /third-part/7z/C/Blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Blake2s.c -------------------------------------------------------------------------------- /third-part/7z/C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Bra.c -------------------------------------------------------------------------------- /third-part/7z/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Bra.h -------------------------------------------------------------------------------- /third-part/7z/C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Bra86.c -------------------------------------------------------------------------------- /third-part/7z/C/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/BraIA64.c -------------------------------------------------------------------------------- /third-part/7z/C/BwtSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/BwtSort.c -------------------------------------------------------------------------------- /third-part/7z/C/BwtSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/BwtSort.h -------------------------------------------------------------------------------- /third-part/7z/C/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Compiler.h -------------------------------------------------------------------------------- /third-part/7z/C/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/CpuArch.c -------------------------------------------------------------------------------- /third-part/7z/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/CpuArch.h -------------------------------------------------------------------------------- /third-part/7z/C/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Delta.c -------------------------------------------------------------------------------- /third-part/7z/C/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Delta.h -------------------------------------------------------------------------------- /third-part/7z/C/DllSecur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/DllSecur.c -------------------------------------------------------------------------------- /third-part/7z/C/DllSecur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/DllSecur.h -------------------------------------------------------------------------------- /third-part/7z/C/HuffEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/HuffEnc.c -------------------------------------------------------------------------------- /third-part/7z/C/HuffEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/HuffEnc.h -------------------------------------------------------------------------------- /third-part/7z/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/LzFind.c -------------------------------------------------------------------------------- /third-part/7z/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/LzFind.h -------------------------------------------------------------------------------- /third-part/7z/C/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/LzFindMt.c -------------------------------------------------------------------------------- /third-part/7z/C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/LzFindMt.h -------------------------------------------------------------------------------- /third-part/7z/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/LzHash.h -------------------------------------------------------------------------------- /third-part/7z/C/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Lzma2Dec.c -------------------------------------------------------------------------------- /third-part/7z/C/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Lzma2Dec.h -------------------------------------------------------------------------------- /third-part/7z/C/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Lzma2Enc.c -------------------------------------------------------------------------------- /third-part/7z/C/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Lzma2Enc.h -------------------------------------------------------------------------------- /third-part/7z/C/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Lzma86.h -------------------------------------------------------------------------------- /third-part/7z/C/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Lzma86Dec.c -------------------------------------------------------------------------------- /third-part/7z/C/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Lzma86Enc.c -------------------------------------------------------------------------------- /third-part/7z/C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/LzmaDec.c -------------------------------------------------------------------------------- /third-part/7z/C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/LzmaDec.h -------------------------------------------------------------------------------- /third-part/7z/C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/LzmaEnc.c -------------------------------------------------------------------------------- /third-part/7z/C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/LzmaEnc.h -------------------------------------------------------------------------------- /third-part/7z/C/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/LzmaLib.c -------------------------------------------------------------------------------- /third-part/7z/C/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/LzmaLib.h -------------------------------------------------------------------------------- /third-part/7z/C/MtCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/MtCoder.c -------------------------------------------------------------------------------- /third-part/7z/C/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/MtCoder.h -------------------------------------------------------------------------------- /third-part/7z/C/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Ppmd.h -------------------------------------------------------------------------------- /third-part/7z/C/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Ppmd7.c -------------------------------------------------------------------------------- /third-part/7z/C/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Ppmd7.h -------------------------------------------------------------------------------- /third-part/7z/C/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Ppmd7Dec.c -------------------------------------------------------------------------------- /third-part/7z/C/Ppmd7Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Ppmd7Enc.c -------------------------------------------------------------------------------- /third-part/7z/C/Ppmd8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Ppmd8.c -------------------------------------------------------------------------------- /third-part/7z/C/Ppmd8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Ppmd8.h -------------------------------------------------------------------------------- /third-part/7z/C/Ppmd8Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Ppmd8Dec.c -------------------------------------------------------------------------------- /third-part/7z/C/Ppmd8Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Ppmd8Enc.c -------------------------------------------------------------------------------- /third-part/7z/C/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Precomp.h -------------------------------------------------------------------------------- /third-part/7z/C/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/RotateDefs.h -------------------------------------------------------------------------------- /third-part/7z/C/Sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Sha1.c -------------------------------------------------------------------------------- /third-part/7z/C/Sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Sha1.h -------------------------------------------------------------------------------- /third-part/7z/C/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Sha256.c -------------------------------------------------------------------------------- /third-part/7z/C/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Sha256.h -------------------------------------------------------------------------------- /third-part/7z/C/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Sort.c -------------------------------------------------------------------------------- /third-part/7z/C/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Sort.h -------------------------------------------------------------------------------- /third-part/7z/C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Threads.c -------------------------------------------------------------------------------- /third-part/7z/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Threads.h -------------------------------------------------------------------------------- /third-part/7z/C/Util/7z/7z.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Util/7z/7z.dsp -------------------------------------------------------------------------------- /third-part/7z/C/Util/7z/7z.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Util/7z/7z.dsw -------------------------------------------------------------------------------- /third-part/7z/C/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Xz.c -------------------------------------------------------------------------------- /third-part/7z/C/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/Xz.h -------------------------------------------------------------------------------- /third-part/7z/C/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/XzCrc64.c -------------------------------------------------------------------------------- /third-part/7z/C/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/XzCrc64.h -------------------------------------------------------------------------------- /third-part/7z/C/XzCrc64Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/XzCrc64Opt.c -------------------------------------------------------------------------------- /third-part/7z/C/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/XzDec.c -------------------------------------------------------------------------------- /third-part/7z/C/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/XzEnc.c -------------------------------------------------------------------------------- /third-part/7z/C/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/XzEnc.h -------------------------------------------------------------------------------- /third-part/7z/C/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/C/XzIn.c -------------------------------------------------------------------------------- /third-part/7z/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CMakeLists.txt -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/7zip.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/7zip/7zip.mak -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/Aes.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/7zip/Aes.mak -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | 4 | -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/Archive/Common/ParseProperties.cpp: -------------------------------------------------------------------------------- 1 | // ParseProperties.cpp 2 | 3 | 4 | -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/Archive/DeflateProps.cpp: -------------------------------------------------------------------------------- 1 | // DeflateProps.cpp 2 | 3 | 4 | -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/Asm.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/7zip/Asm.mak -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/Common/LockedStream.cpp: -------------------------------------------------------------------------------- 1 | // LockedStream.cpp 2 | 3 | 4 | -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/Common/MethodId.cpp: -------------------------------------------------------------------------------- 1 | // MethodId.cpp 2 | 3 | 4 | -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/Crc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/7zip/Crc.mak -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/Guid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/7zip/Guid.txt -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/ICoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/7zip/ICoder.h -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/IDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/7zip/IDecl.h -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/MyVersion.h: -------------------------------------------------------------------------------- 1 | #define USE_COPYRIGHT_CR 2 | #include "../../C/7zVersion.h" 3 | -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/PropID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/7zip/PropID.h -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/UI/FileManager/ProgramLocation.cpp: -------------------------------------------------------------------------------- 1 | // ProgramLocation.cpp 2 | 3 | 4 | -------------------------------------------------------------------------------- /third-part/7z/CPP/7zip/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/7zip/makefile -------------------------------------------------------------------------------- /third-part/7z/CPP/Build.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/Build.mak -------------------------------------------------------------------------------- /third-part/7z/CPP/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/Common/Defs.h -------------------------------------------------------------------------------- /third-part/7z/CPP/Common/Lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/Common/Lang.h -------------------------------------------------------------------------------- /third-part/7z/CPP/Common/MyVector.cpp: -------------------------------------------------------------------------------- 1 | // Common/MyVector.cpp 2 | 3 | 4 | -------------------------------------------------------------------------------- /third-part/7z/CPP/Windows/COM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/Windows/COM.h -------------------------------------------------------------------------------- /third-part/7z/CPP/Windows/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/Windows/DLL.h -------------------------------------------------------------------------------- /third-part/7z/CPP/Windows/Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/CPP/Windows/Net.h -------------------------------------------------------------------------------- /third-part/7z/SevenZip/Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/SevenZip/Enum.h -------------------------------------------------------------------------------- /third-part/7z/SevenZip/GUIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/SevenZip/GUIDs.h -------------------------------------------------------------------------------- /third-part/7z/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/test.cpp -------------------------------------------------------------------------------- /third-part/7z/testunzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/7z/testunzip.cpp -------------------------------------------------------------------------------- /third-part/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/CMakeLists.txt -------------------------------------------------------------------------------- /third-part/Scintilla/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/Scintilla/README -------------------------------------------------------------------------------- /third-part/Scintilla/src/XPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/Scintilla/src/XPM.h -------------------------------------------------------------------------------- /third-part/Scintilla/version.txt: -------------------------------------------------------------------------------- 1 | 365 2 | -------------------------------------------------------------------------------- /third-part/Scintilla/win32/Scintilla.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | Scintilla_DirectFunction -------------------------------------------------------------------------------- /third-part/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/gtest/CHANGES -------------------------------------------------------------------------------- /third-part/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /third-part/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /third-part/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/gtest/LICENSE -------------------------------------------------------------------------------- /third-part/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/gtest/README -------------------------------------------------------------------------------- /third-part/gtest/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/gtest/aclocal.m4 -------------------------------------------------------------------------------- /third-part/gtest/gtest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/gtest/gtest.pro -------------------------------------------------------------------------------- /third-part/gtest/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/gtest/gtest.vcproj -------------------------------------------------------------------------------- /third-part/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/gtest/src/gtest.cc -------------------------------------------------------------------------------- /third-part/jsoncpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/jsoncpp/.gitignore -------------------------------------------------------------------------------- /third-part/jsoncpp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/jsoncpp/.travis.yml -------------------------------------------------------------------------------- /third-part/jsoncpp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/jsoncpp/AUTHORS -------------------------------------------------------------------------------- /third-part/jsoncpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/jsoncpp/LICENSE -------------------------------------------------------------------------------- /third-part/jsoncpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/jsoncpp/README.md -------------------------------------------------------------------------------- /third-part/jsoncpp/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/jsoncpp/appveyor.yml -------------------------------------------------------------------------------- /third-part/jsoncpp/dev.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/jsoncpp/dev.makefile -------------------------------------------------------------------------------- /third-part/jsoncpp/doxybuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/jsoncpp/doxybuild.py -------------------------------------------------------------------------------- /third-part/jsoncpp/jsoncpp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/jsoncpp/jsoncpp.pro -------------------------------------------------------------------------------- /third-part/jsoncpp/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/jsoncpp/meson.build -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/fail_test_array_01.json: -------------------------------------------------------------------------------- 1 | [ 1 2 3] 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_array_01.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_array_01.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_array_02.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | .[0]=1 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_array_02.json: -------------------------------------------------------------------------------- 1 | [1] 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_array_03.json: -------------------------------------------------------------------------------- 1 | [ 1, 2 , 3,4,5] 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_array_04.json: -------------------------------------------------------------------------------- 1 | [1, "abc" , 12.3, -4] 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_01.expected: -------------------------------------------------------------------------------- 1 | .=123456789 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_01.json: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_02.expected: -------------------------------------------------------------------------------- 1 | .=-123456789 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_02.json: -------------------------------------------------------------------------------- 1 | -0123456789 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_03.expected: -------------------------------------------------------------------------------- 1 | .=1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_03.json: -------------------------------------------------------------------------------- 1 | 1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_04.expected: -------------------------------------------------------------------------------- 1 | .="abcdef" 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_04.json: -------------------------------------------------------------------------------- 1 | "abcdef" 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_05.expected: -------------------------------------------------------------------------------- 1 | .=null 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_05.json: -------------------------------------------------------------------------------- 1 | null 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_06.expected: -------------------------------------------------------------------------------- 1 | .=true 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_06.json: -------------------------------------------------------------------------------- 1 | true 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_07.expected: -------------------------------------------------------------------------------- 1 | .=false 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_07.json: -------------------------------------------------------------------------------- 1 | false 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_08.expected: -------------------------------------------------------------------------------- 1 | // C++ style comment 2 | .=null 3 | 4 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_08.json: -------------------------------------------------------------------------------- 1 | // C++ style comment 2 | null 3 | 4 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_09.expected: -------------------------------------------------------------------------------- 1 | /* C style comment 2 | */ 3 | .=null 4 | 5 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_basic_09.json: -------------------------------------------------------------------------------- 1 | /* C style comment 2 | */ 3 | null 4 | 5 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_01.expected: -------------------------------------------------------------------------------- 1 | // Max signed integer 2 | .=2147483647 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_01.json: -------------------------------------------------------------------------------- 1 | // Max signed integer 2 | 2147483647 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_02.expected: -------------------------------------------------------------------------------- 1 | // Min signed integer 2 | .=-2147483648 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_02.json: -------------------------------------------------------------------------------- 1 | // Min signed integer 2 | -2147483648 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_03.expected: -------------------------------------------------------------------------------- 1 | // Max unsigned integer 2 | .=4294967295 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_03.json: -------------------------------------------------------------------------------- 1 | // Max unsigned integer 2 | 4294967295 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_04.expected: -------------------------------------------------------------------------------- 1 | // Min unsigned integer 2 | .=0 3 | 4 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_04.json: -------------------------------------------------------------------------------- 1 | // Min unsigned integer 2 | 0 3 | 4 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_05.expected: -------------------------------------------------------------------------------- 1 | .=1 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_05.json: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_06_64bits.expected: -------------------------------------------------------------------------------- 1 | .=9223372036854775808 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_06_64bits.json: -------------------------------------------------------------------------------- 1 | 9223372036854775808 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_07_64bits.expected: -------------------------------------------------------------------------------- 1 | .=-9223372036854775808 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_07_64bits.json: -------------------------------------------------------------------------------- 1 | -9223372036854775808 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_08_64bits.expected: -------------------------------------------------------------------------------- 1 | .=18446744073709551615 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_integer_08_64bits.json: -------------------------------------------------------------------------------- 1 | 18446744073709551615 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_object_01.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_object_01.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_object_02.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .count=1234 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_object_02.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234 } 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_object_04.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .=1234 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_object_04.json: -------------------------------------------------------------------------------- 1 | { 2 | "" : 1234 3 | } 4 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_real_12.json: -------------------------------------------------------------------------------- 1 | // 2^64 -> switch to double. 2 | 18446744073709551616 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_string_03.expected: -------------------------------------------------------------------------------- 1 | .="http://jsoncpp.sourceforge.net/" -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_string_03.json: -------------------------------------------------------------------------------- 1 | "http:\/\/jsoncpp.sourceforge.net\/" 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_string_04.expected: -------------------------------------------------------------------------------- 1 | .=""abc\def"" 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_string_04.json: -------------------------------------------------------------------------------- 1 | "\"abc\\def\"" 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_string_unicode_01.expected: -------------------------------------------------------------------------------- 1 | .="a" 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_string_unicode_01.json: -------------------------------------------------------------------------------- 1 | "\u0061" -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_string_unicode_02.expected: -------------------------------------------------------------------------------- 1 | .="¢" 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_string_unicode_02.json: -------------------------------------------------------------------------------- 1 | "\u00A2" -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_string_unicode_03.expected: -------------------------------------------------------------------------------- 1 | .="€" 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_string_unicode_03.json: -------------------------------------------------------------------------------- 1 | "\u20AC" -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_string_unicode_04.expected: -------------------------------------------------------------------------------- 1 | .="𝄞" 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_string_unicode_04.json: -------------------------------------------------------------------------------- 1 | "\uD834\uDD1E" -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_string_unicode_05.expected: -------------------------------------------------------------------------------- 1 | .="Zażółć gęślą jaźń" 2 | 3 | -------------------------------------------------------------------------------- /third-part/jsoncpp/test/data/test_string_unicode_05.json: -------------------------------------------------------------------------------- 1 | "Zażółć gęślą jaźń" -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /third-part/jsoncpp/test/jsonchecker/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /third-part/jsoncpp/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/jsoncpp/travis.sh -------------------------------------------------------------------------------- /third-part/jsoncpp/version: -------------------------------------------------------------------------------- 1 | 1.8.4 2 | -------------------------------------------------------------------------------- /third-part/jsoncpp/version.in: -------------------------------------------------------------------------------- 1 | @JSONCPP_VERSION@ 2 | -------------------------------------------------------------------------------- /third-part/lua-52/lua-52.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/lua-52.pro -------------------------------------------------------------------------------- /third-part/lua-52/lua-52.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/lua-52.sln -------------------------------------------------------------------------------- /third-part/lua-52/lua-52.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/lua-52.vcproj -------------------------------------------------------------------------------- /third-part/lua-52/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/Makefile -------------------------------------------------------------------------------- /third-part/lua-52/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lapi.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lapi.h -------------------------------------------------------------------------------- /third-part/lua-52/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lauxlib.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lauxlib.h -------------------------------------------------------------------------------- /third-part/lua-52/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lbitlib.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lcode.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lcode.h -------------------------------------------------------------------------------- /third-part/lua-52/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lctype.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lctype.h -------------------------------------------------------------------------------- /third-part/lua-52/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/ldblib.c -------------------------------------------------------------------------------- /third-part/lua-52/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/ldebug.c -------------------------------------------------------------------------------- /third-part/lua-52/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/ldebug.h -------------------------------------------------------------------------------- /third-part/lua-52/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/ldo.c -------------------------------------------------------------------------------- /third-part/lua-52/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/ldo.h -------------------------------------------------------------------------------- /third-part/lua-52/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/ldump.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lfunc.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lfunc.h -------------------------------------------------------------------------------- /third-part/lua-52/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lgc.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lgc.h -------------------------------------------------------------------------------- /third-part/lua-52/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/linit.c -------------------------------------------------------------------------------- /third-part/lua-52/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/liolib.c -------------------------------------------------------------------------------- /third-part/lua-52/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/llex.c -------------------------------------------------------------------------------- /third-part/lua-52/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/llex.h -------------------------------------------------------------------------------- /third-part/lua-52/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/llimits.h -------------------------------------------------------------------------------- /third-part/lua-52/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lmem.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lmem.h -------------------------------------------------------------------------------- /third-part/lua-52/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/loadlib.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lobject.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lobject.h -------------------------------------------------------------------------------- /third-part/lua-52/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/loslib.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lparser.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lparser.h -------------------------------------------------------------------------------- /third-part/lua-52/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lstate.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lstate.h -------------------------------------------------------------------------------- /third-part/lua-52/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lstring.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lstring.h -------------------------------------------------------------------------------- /third-part/lua-52/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lstrlib.c -------------------------------------------------------------------------------- /third-part/lua-52/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/ltable.c -------------------------------------------------------------------------------- /third-part/lua-52/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/ltable.h -------------------------------------------------------------------------------- /third-part/lua-52/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/ltablib.c -------------------------------------------------------------------------------- /third-part/lua-52/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/ltm.c -------------------------------------------------------------------------------- /third-part/lua-52/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/ltm.h -------------------------------------------------------------------------------- /third-part/lua-52/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lua.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lua.h -------------------------------------------------------------------------------- /third-part/lua-52/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lua.hpp -------------------------------------------------------------------------------- /third-part/lua-52/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/luac.c -------------------------------------------------------------------------------- /third-part/lua-52/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/luaconf.h -------------------------------------------------------------------------------- /third-part/lua-52/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lualib.h -------------------------------------------------------------------------------- /third-part/lua-52/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lundump.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lundump.h -------------------------------------------------------------------------------- /third-part/lua-52/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lvm.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lvm.h -------------------------------------------------------------------------------- /third-part/lua-52/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lzio.c -------------------------------------------------------------------------------- /third-part/lua-52/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/lua-52/src/lzio.h -------------------------------------------------------------------------------- /third-part/mhook/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/mhook/CMakeLists.txt -------------------------------------------------------------------------------- /third-part/mhook/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/mhook/COPYING.txt -------------------------------------------------------------------------------- /third-part/mhook/mhook.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/mhook/mhook.pro -------------------------------------------------------------------------------- /third-part/mhook/mhook.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/mhook/mhook.vcproj -------------------------------------------------------------------------------- /third-part/nanosvg/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/nanosvg/LICENSE.txt -------------------------------------------------------------------------------- /third-part/nanosvg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/nanosvg/README.md -------------------------------------------------------------------------------- /third-part/png/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/CMakeLists.txt -------------------------------------------------------------------------------- /third-part/png/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/LICENSE -------------------------------------------------------------------------------- /third-part/png/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/README -------------------------------------------------------------------------------- /third-part/png/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/png.c -------------------------------------------------------------------------------- /third-part/png/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/png.h -------------------------------------------------------------------------------- /third-part/png/png.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/png.pro -------------------------------------------------------------------------------- /third-part/png/png.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/png.vcproj -------------------------------------------------------------------------------- /third-part/png/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngconf.h -------------------------------------------------------------------------------- /third-part/png/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngdebug.h -------------------------------------------------------------------------------- /third-part/png/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngerror.c -------------------------------------------------------------------------------- /third-part/png/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngget.c -------------------------------------------------------------------------------- /third-part/png/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pnginfo.h -------------------------------------------------------------------------------- /third-part/png/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pnglibconf.h -------------------------------------------------------------------------------- /third-part/png/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngmem.c -------------------------------------------------------------------------------- /third-part/png/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngpread.c -------------------------------------------------------------------------------- /third-part/png/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngpriv.h -------------------------------------------------------------------------------- /third-part/png/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngread.c -------------------------------------------------------------------------------- /third-part/png/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngrio.c -------------------------------------------------------------------------------- /third-part/png/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngrtran.c -------------------------------------------------------------------------------- /third-part/png/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngrutil.c -------------------------------------------------------------------------------- /third-part/png/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngset.c -------------------------------------------------------------------------------- /third-part/png/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngstruct.h -------------------------------------------------------------------------------- /third-part/png/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngtrans.c -------------------------------------------------------------------------------- /third-part/png/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngwio.c -------------------------------------------------------------------------------- /third-part/png/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngwrite.c -------------------------------------------------------------------------------- /third-part/png/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngwtran.c -------------------------------------------------------------------------------- /third-part/png/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/png/pngwutil.c -------------------------------------------------------------------------------- /third-part/skia/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/skia/CMakeLists.txt -------------------------------------------------------------------------------- /third-part/skia/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/skia/LICENSE.txt -------------------------------------------------------------------------------- /third-part/skia/skia.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/skia/skia.pro -------------------------------------------------------------------------------- /third-part/skia/skia.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/skia/skia.vcproj -------------------------------------------------------------------------------- /third-part/skia/src/gpu/GrGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/skia/src/gpu/GrGpu.h -------------------------------------------------------------------------------- /third-part/smiley/smiley.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/smiley/smiley.pro -------------------------------------------------------------------------------- /third-part/smiley/smiley.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/smiley/smiley.vcproj -------------------------------------------------------------------------------- /third-part/sqlite3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/LICENSE.md -------------------------------------------------------------------------------- /third-part/sqlite3/carray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/carray.c -------------------------------------------------------------------------------- /third-part/sqlite3/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/codec.c -------------------------------------------------------------------------------- /third-part/sqlite3/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/codec.h -------------------------------------------------------------------------------- /third-part/sqlite3/codecext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/codecext.c -------------------------------------------------------------------------------- /third-part/sqlite3/csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/csv.c -------------------------------------------------------------------------------- /third-part/sqlite3/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/fileio.c -------------------------------------------------------------------------------- /third-part/sqlite3/rijndael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/rijndael.c -------------------------------------------------------------------------------- /third-part/sqlite3/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/rijndael.h -------------------------------------------------------------------------------- /third-part/sqlite3/series.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/series.c -------------------------------------------------------------------------------- /third-part/sqlite3/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/sha2.c -------------------------------------------------------------------------------- /third-part/sqlite3/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/sha2.h -------------------------------------------------------------------------------- /third-part/sqlite3/shathree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/shathree.c -------------------------------------------------------------------------------- /third-part/sqlite3/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/shell.c -------------------------------------------------------------------------------- /third-part/sqlite3/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/sqlite3.c -------------------------------------------------------------------------------- /third-part/sqlite3/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/sqlite3.h -------------------------------------------------------------------------------- /third-part/sqlite3/sqlite3.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/sqlite3.pro -------------------------------------------------------------------------------- /third-part/sqlite3/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/sqlite3ext.h -------------------------------------------------------------------------------- /third-part/sqlite3/userauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/sqlite3/userauth.c -------------------------------------------------------------------------------- /third-part/stdint/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/stdint/stdint.h -------------------------------------------------------------------------------- /third-part/third-part.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/third-part.pro -------------------------------------------------------------------------------- /third-part/wke/include/wke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/wke/include/wke.h -------------------------------------------------------------------------------- /third-part/wke/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/wke/readme.txt -------------------------------------------------------------------------------- /third-part/wke/wke.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/wke/wke.7z -------------------------------------------------------------------------------- /third-part/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /third-part/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/ChangeLog -------------------------------------------------------------------------------- /third-part/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/FAQ -------------------------------------------------------------------------------- /third-part/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/README -------------------------------------------------------------------------------- /third-part/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/adler32.c -------------------------------------------------------------------------------- /third-part/zlib/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/algorithm.txt -------------------------------------------------------------------------------- /third-part/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/compress.c -------------------------------------------------------------------------------- /third-part/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/crc32.c -------------------------------------------------------------------------------- /third-part/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/crc32.h -------------------------------------------------------------------------------- /third-part/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/deflate.c -------------------------------------------------------------------------------- /third-part/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/deflate.h -------------------------------------------------------------------------------- /third-part/zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/gzio.c -------------------------------------------------------------------------------- /third-part/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/infback.c -------------------------------------------------------------------------------- /third-part/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/inffast.c -------------------------------------------------------------------------------- /third-part/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/inffast.h -------------------------------------------------------------------------------- /third-part/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/inffixed.h -------------------------------------------------------------------------------- /third-part/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/inflate.c -------------------------------------------------------------------------------- /third-part/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/inflate.h -------------------------------------------------------------------------------- /third-part/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/inftrees.c -------------------------------------------------------------------------------- /third-part/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/inftrees.h -------------------------------------------------------------------------------- /third-part/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/trees.c -------------------------------------------------------------------------------- /third-part/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/trees.h -------------------------------------------------------------------------------- /third-part/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/uncompr.c -------------------------------------------------------------------------------- /third-part/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/zconf.h -------------------------------------------------------------------------------- /third-part/zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/zconf.in.h -------------------------------------------------------------------------------- /third-part/zlib/zlib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/zlib.dsp -------------------------------------------------------------------------------- /third-part/zlib/zlib.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/zlib.dsw -------------------------------------------------------------------------------- /third-part/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/zlib.h -------------------------------------------------------------------------------- /third-part/zlib/zlib.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/zlib.pro -------------------------------------------------------------------------------- /third-part/zlib/zlib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/zlib.sln -------------------------------------------------------------------------------- /third-part/zlib/zlib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/zlib.vcproj -------------------------------------------------------------------------------- /third-part/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/zutil.c -------------------------------------------------------------------------------- /third-part/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/third-part/zlib/zutil.h -------------------------------------------------------------------------------- /tools/7-zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/7-zip.dll -------------------------------------------------------------------------------- /tools/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/7z.dll -------------------------------------------------------------------------------- /tools/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/7z.exe -------------------------------------------------------------------------------- /tools/ConvertPlatformToXp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/ConvertPlatformToXp.exe -------------------------------------------------------------------------------- /tools/mkspecs/common/angle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/mkspecs/common/angle.conf -------------------------------------------------------------------------------- /tools/mkspecs/features/benchmark.prf: -------------------------------------------------------------------------------- 1 | load(testcase) 2 | -------------------------------------------------------------------------------- /tools/mkspecs/features/build_pass.prf: -------------------------------------------------------------------------------- 1 | CONFIG += no_autoqmake 2 | -------------------------------------------------------------------------------- /tools/mkspecs/features/declarative_debug.prf: -------------------------------------------------------------------------------- 1 | DEFINES += QT_DECLARATIVE_DEBUG 2 | -------------------------------------------------------------------------------- /tools/mkspecs/features/designer_defines.prf: -------------------------------------------------------------------------------- 1 | plugin:DEFINES += QDESIGNER_EXPORT_WIDGETS 2 | -------------------------------------------------------------------------------- /tools/mkspecs/features/egl.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/mkspecs/features/egl.prf -------------------------------------------------------------------------------- /tools/mkspecs/features/gcov.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/mkspecs/features/gcov.prf -------------------------------------------------------------------------------- /tools/mkspecs/features/java.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/mkspecs/features/java.prf -------------------------------------------------------------------------------- /tools/mkspecs/features/lex.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/mkspecs/features/lex.prf -------------------------------------------------------------------------------- /tools/mkspecs/features/ltcg.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/mkspecs/features/ltcg.prf -------------------------------------------------------------------------------- /tools/mkspecs/features/moc.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/mkspecs/features/moc.prf -------------------------------------------------------------------------------- /tools/mkspecs/features/qml_debug.prf: -------------------------------------------------------------------------------- 1 | DEFINES += QT_QML_DEBUG 2 | -------------------------------------------------------------------------------- /tools/mkspecs/features/qt.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/mkspecs/features/qt.prf -------------------------------------------------------------------------------- /tools/mkspecs/features/simd.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/mkspecs/features/simd.prf -------------------------------------------------------------------------------- /tools/mkspecs/features/uic.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/mkspecs/features/uic.prf -------------------------------------------------------------------------------- /tools/mkspecs/features/win32/qt_dll.prf: -------------------------------------------------------------------------------- 1 | CONFIG *= qt 2 | -------------------------------------------------------------------------------- /tools/mkspecs/features/yacc.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/mkspecs/features/yacc.prf -------------------------------------------------------------------------------- /tools/mkspecs/qconfig.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/mkspecs/qconfig.pri -------------------------------------------------------------------------------- /tools/qmake.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/qmake.exe -------------------------------------------------------------------------------- /tools/qmake2017.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/qmake2017.exe -------------------------------------------------------------------------------- /tools/src/uiresbuilder/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/src/uiresbuilder/stdafx.h -------------------------------------------------------------------------------- /tools/src/xml2bin/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/src/xml2bin/resource.h -------------------------------------------------------------------------------- /tools/src/xml2bin/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/src/xml2bin/stdafx.cpp -------------------------------------------------------------------------------- /tools/src/xml2bin/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/src/xml2bin/stdafx.h -------------------------------------------------------------------------------- /tools/src/xml2bin/xml2bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/src/xml2bin/xml2bin.cpp -------------------------------------------------------------------------------- /tools/src/xml2bin/xml2bin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/src/xml2bin/xml2bin.rc -------------------------------------------------------------------------------- /tools/src/xml2bin/xml2bin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/src/xml2bin/xml2bin.sln -------------------------------------------------------------------------------- /tools/uiresImporter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/uiresImporter.exe -------------------------------------------------------------------------------- /tools/uiresbuilder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/uiresbuilder.exe -------------------------------------------------------------------------------- /tools/xml2bin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/xml2bin.exe -------------------------------------------------------------------------------- /tools/如何使用cmake生成VS工程文件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/tools/如何使用cmake生成VS工程文件.md -------------------------------------------------------------------------------- /utilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/utilities/CMakeLists.txt -------------------------------------------------------------------------------- /utilities/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/utilities/ReadMe.txt -------------------------------------------------------------------------------- /utilities/include/gdialpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/utilities/include/gdialpha.h -------------------------------------------------------------------------------- /utilities/include/snew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/utilities/include/snew.h -------------------------------------------------------------------------------- /utilities/include/souicoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/utilities/include/souicoll.h -------------------------------------------------------------------------------- /utilities/include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/utilities/include/trace.h -------------------------------------------------------------------------------- /utilities/include/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/utilities/include/utilities.h -------------------------------------------------------------------------------- /utilities/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/utilities/resource.h -------------------------------------------------------------------------------- /utilities/src/gdialpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/utilities/src/gdialpha.cpp -------------------------------------------------------------------------------- /utilities/src/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/utilities/src/trace.cpp -------------------------------------------------------------------------------- /utilities/src/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/utilities/src/utilities.cpp -------------------------------------------------------------------------------- /utilities/utilities.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/utilities/utilities.pro -------------------------------------------------------------------------------- /utilities/utilities.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/utilities/utilities.rc -------------------------------------------------------------------------------- /utilities/utilities.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/utilities/utilities.vcproj -------------------------------------------------------------------------------- /wizard/entry/Soui3DllWizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/wizard/entry/Soui3DllWizard.ico -------------------------------------------------------------------------------- /wizard/entry/Soui3Wizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/wizard/entry/Soui3Wizard.ico -------------------------------------------------------------------------------- /wizard/entry/Soui3Wizard.vsdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/wizard/entry/Soui3Wizard.vsdir -------------------------------------------------------------------------------- /wizard/vs2022安装须知(重要).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/wizard/vs2022安装须知(重要).txt -------------------------------------------------------------------------------- /wizard/vslist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/wizard/vslist.ini -------------------------------------------------------------------------------- /wizard/wizard.setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soui3/soui/HEAD/wizard/wizard.setup.exe -------------------------------------------------------------------------------- /wizard/wizard.setup.src/wizard.setup.h: -------------------------------------------------------------------------------- 1 | // wizard.setup.h 2 | --------------------------------------------------------------------------------