├── .gitignore ├── README.md ├── doc ├── DUIENGINE坐标系统.txt ├── DUI引擎属性文档.docx ├── Duiengine2.0 移植说明.docx ├── logo.png ├── 从Bkwin到DUIEngine快速入门[ 网友'一言'友情提供].docx ├── 使用说明.txt ├── 新手必读.txt └── 更新历史.txt ├── src ├── .gitignore ├── CMakeLists.txt ├── DUIEngine │ ├── DUIEngine.2008.sln │ ├── DUIEngine.2010.sln │ ├── DUIEngine.vcproj │ ├── DUIEngine.vcxproj │ ├── DUIEngine.vcxproj.filters │ ├── DUIEngine.vcxproj.user │ ├── ReadMe.txt │ ├── dependencies │ │ └── pugixml │ │ │ ├── pugiconfig.hpp │ │ │ ├── pugixml.cpp │ │ │ ├── pugixml.hpp │ │ │ └── readme.txt │ ├── dllmain.cpp │ ├── include │ │ ├── Accelerator.h │ │ ├── DUISingleton.h │ │ ├── DragWnd.h │ │ ├── DuiActiveX.h │ │ ├── DuiAttrCrack.h │ │ ├── DuiCSS.h │ │ ├── DuiCalendar.h │ │ ├── DuiCaption.h │ │ ├── DuiComboBox.h │ │ ├── DuiContainer.h │ │ ├── DuiDateTimeEdit.h │ │ ├── DuiDef.h │ │ ├── DuiDefaultLogger.h │ │ ├── DuiDropDown.h │ │ ├── DuiEventSet.h │ │ ├── DuiEventSubscriber.h │ │ ├── DuiFrameDropTarget.h │ │ ├── DuiHeaderCtrl.h │ │ ├── DuiHotKeyCtrl.h │ │ ├── DuiImgBase.h │ │ ├── DuiImgDecoder_Def.h │ │ ├── DuiListCtrl.h │ │ ├── DuiLogger.h │ │ ├── DuiMenu.h │ │ ├── DuiMessageBox.h │ │ ├── DuiRichEdit.h │ │ ├── DuiScriptModule.h │ │ ├── DuiSingletonMap.h │ │ ├── DuiSkinBase.h │ │ ├── DuiSkinPool.h │ │ ├── DuiSliderBar.h │ │ ├── DuiSplitWnd.h │ │ ├── DuiSystem.h │ │ ├── DuiThreadActiveWndManager.h │ │ ├── DuiTime.h │ │ ├── DuiTimerEx.h │ │ ├── DuiTipCtrl.h │ │ ├── DuiTreeCtrl.h │ │ ├── DuiUtilities.h │ │ ├── DuiWindowManager.h │ │ ├── DuiWndFactoryManager.h │ │ ├── FocusManager.h │ │ ├── GradientFillHelper.h │ │ ├── MemDC.h │ │ ├── MenuWndHook.h │ │ ├── Name2ID.h │ │ ├── SimpleWnd.h │ │ ├── activex │ │ │ ├── DuiAxHost.h │ │ │ ├── DuiBStr.h │ │ │ ├── flash10t.tlh │ │ │ ├── flash10t.tli │ │ │ ├── wmp.tlh │ │ │ └── wmp.tli │ │ ├── atl.mini │ │ │ ├── atldef.h │ │ │ └── duicomcli.h │ │ ├── auto_reset.h │ │ ├── duiItempanel.h │ │ ├── duicolor.h │ │ ├── duictrls.h │ │ ├── duifontpool.h │ │ ├── duiframe.h │ │ ├── duihostwnd.h │ │ ├── duiimage.h │ │ ├── duiimgpool.h │ │ ├── duiitembox.h │ │ ├── duilistbox.h │ │ ├── duilistboxex.h │ │ ├── duimsgcracker.h │ │ ├── duimsgfilter.h │ │ ├── duiobject.h │ │ ├── duirealwnd.h │ │ ├── duiref.h │ │ ├── duires.h │ │ ├── duiresprovider.h │ │ ├── duiresproviderbase.h │ │ ├── duiscrollbar.h │ │ ├── duiskin.h │ │ ├── duistd.h │ │ ├── duistringpool.h │ │ ├── duitreebox.h │ │ ├── duiwnd.h │ │ ├── duiwndcmnctrl.h │ │ ├── duiwnddlgfile.h │ │ ├── duiwndnotify.h │ │ ├── duiwndpanel.h │ │ ├── duiwndstyle.h │ │ ├── duiwndtabctrl.h │ │ ├── gdialpha.h │ │ ├── mybuffer.h │ │ ├── stree.hpp │ │ └── wtl.mini │ │ │ ├── duicoll.h │ │ │ ├── duicrack.h │ │ │ ├── duigdi.h │ │ │ ├── duimisc.h │ │ │ ├── duistr.h │ │ │ ├── strcpcvt.h │ │ │ └── tstring.h │ ├── license.txt │ ├── src │ │ ├── Accelerator.cpp │ │ ├── DragWnd.cpp │ │ ├── DuiActiveX.cpp │ │ ├── DuiCSS.cpp │ │ ├── DuiCalendar.cpp │ │ ├── DuiCaption.cpp │ │ ├── DuiComboBox.cpp │ │ ├── DuiDateTimeEdit.cpp │ │ ├── DuiDropDown.cpp │ │ ├── DuiEventSet.cpp │ │ ├── DuiFrameDropTarget.cpp │ │ ├── DuiHeaderCtrl.cpp │ │ ├── DuiHotKeyCtrl.cpp │ │ ├── DuiImgDecoder_Def.cpp │ │ ├── DuiListCtrl.cpp │ │ ├── DuiLogger.cpp │ │ ├── DuiMenu.cpp │ │ ├── DuiMessageBox.cpp │ │ ├── DuiRichEdit.cpp │ │ ├── DuiSkinBase.cpp │ │ ├── DuiSkinPool.cpp │ │ ├── DuiSliderBar.cpp │ │ ├── DuiSplitWnd.cpp │ │ ├── DuiSystem.cpp │ │ ├── DuiThreadActiveWndManager.cpp │ │ ├── DuiTimerEx.cpp │ │ ├── DuiTipCtrl.cpp │ │ ├── DuiTreeCtrl.cpp │ │ ├── DuiUtilities.cpp │ │ ├── DuiWindowManager.cpp │ │ ├── DuiWndFactoryManager.cpp │ │ ├── FocusManager.cpp │ │ ├── GradientFillHelper.cpp │ │ ├── MemDC.cpp │ │ ├── MenuWndHook.cpp │ │ ├── Name2ID.cpp │ │ ├── SimpleWnd.cpp │ │ ├── activex │ │ │ ├── DuiAxContainer.cpp │ │ │ ├── DuiAxContainer.h │ │ │ ├── DuiAxUtil.h │ │ │ └── DuiBStr.cpp │ │ ├── duiDefaultLogger.cpp │ │ ├── duiItempanel.cpp │ │ ├── duicolor.cpp │ │ ├── duifontpool.cpp │ │ ├── duiframe.cpp │ │ ├── duihostwnd.cpp │ │ ├── duiimage.cpp │ │ ├── duiimgpool.cpp │ │ ├── duiitembox.cpp │ │ ├── duilistbox.cpp │ │ ├── duilistboxex.cpp │ │ ├── duirealwnd.cpp │ │ ├── duiresprovider.cpp │ │ ├── duiscrollbar.cpp │ │ ├── duiskin.cpp │ │ ├── duistd.cpp │ │ ├── duistringpool.cpp │ │ ├── duitreebox.cpp │ │ ├── duiwnd.cpp │ │ ├── duiwndcmnctrl.cpp │ │ ├── duiwndpanel.cpp │ │ ├── duiwndstyle.cpp │ │ ├── duiwndtabctrl.cpp │ │ └── gdialpha.cpp │ └── vsprop │ │ ├── duiengine-build.props │ │ ├── duiengine-root.props │ │ ├── shadow-build.props │ │ ├── shadow-prebuild.props │ │ └── wtl-root.props ├── addons │ ├── CMakeLists.txt │ ├── luaScript │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── lua-5.1 │ │ │ │ ├── lauxlib.h │ │ │ │ ├── lua.h │ │ │ │ ├── luaconf.h │ │ │ │ └── lualib.h │ │ │ └── luaScriptModule │ │ │ │ └── luaScriptModule.h │ │ ├── lua-5.1 │ │ │ ├── ReadMe.txt │ │ │ ├── dllmain.c │ │ │ ├── lapi.c │ │ │ ├── lapi.h │ │ │ ├── lauxlib.c │ │ │ ├── lauxlib.h │ │ │ ├── lbaselib.c │ │ │ ├── lcode.c │ │ │ ├── lcode.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.sln │ │ │ ├── lua.vcproj │ │ │ ├── lua.vcxproj │ │ │ ├── lua.vcxproj.filters │ │ │ ├── lua.vcxproj.user │ │ │ ├── lua2010.sln │ │ │ ├── luac.c │ │ │ ├── luaconf.h │ │ │ ├── lualib.h │ │ │ ├── lundump.c │ │ │ ├── lundump.h │ │ │ ├── lvm.c │ │ │ ├── lvm.h │ │ │ ├── lzio.c │ │ │ ├── lzio.h │ │ │ ├── print.c │ │ │ ├── stdafx.cpp │ │ │ └── version.c │ │ ├── luaScriptModule.sln │ │ ├── luaScriptModule │ │ │ ├── ReadMe.txt │ │ │ ├── exports │ │ │ │ ├── ExpDuiBasic.h │ │ │ │ ├── ExpDuiEngine.cpp │ │ │ │ ├── ExpDuiMessageBox.h │ │ │ │ ├── ExpDuiResProvider.h │ │ │ │ ├── ExpDuiScriptModule.h │ │ │ │ ├── ExpDuiSystem.h │ │ │ │ ├── ExpDuiThreadActiveWndMgr.h │ │ │ │ └── ExpDuiWindow.h │ │ │ ├── luaScriptModule.cpp │ │ │ ├── luaScriptModule.h │ │ │ ├── luaScriptModule.vcproj │ │ │ ├── luaScriptModule.vcxproj │ │ │ ├── luaScriptModule.vcxproj.filters │ │ │ ├── luaScriptModule.vcxproj.user │ │ │ ├── lua_duiengine.cpp │ │ │ ├── lua_tinker.cpp │ │ │ ├── lua_tinker.h │ │ │ ├── require.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── vsprops │ │ │ │ └── duiengine-portal.props │ │ └── luaScriptModule2010.sln │ └── 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 │ │ ├── win32 │ │ ├── DLL_FAQ.txt │ │ ├── Makefile.bor │ │ ├── Makefile.gcc │ │ ├── Makefile.msc │ │ ├── README-WIN32.txt │ │ ├── VisualC.txt │ │ ├── zlib.def │ │ └── zlib1.rc │ │ ├── zconf.h │ │ ├── zconf.h.cmakein │ │ ├── zconf.h.in │ │ ├── zconf.h.included │ │ ├── zconf.in.h │ │ ├── zlib.2010.sln │ │ ├── zlib.dsp │ │ ├── zlib.dsw │ │ ├── zlib.h │ │ ├── zlib.pc.cmakein │ │ ├── zlib.pc.in │ │ ├── zlib.sln │ │ ├── zlib.vcproj │ │ ├── zlib.vcxproj │ │ ├── zlib.vcxproj.filters │ │ ├── zlib.vcxproj.user │ │ ├── zutil.c │ │ └── zutil.h ├── cmake │ ├── CMakeParseArguments.cmake │ ├── duix_build_config.cmake │ ├── duix_utils.cmake │ ├── pcl_targets.cmake │ └── pcl_utils.cmake ├── duix_config.h.in ├── duixengine │ ├── CMakeLists.txt │ ├── DUIEngine.2008.sln │ ├── DUIEngine.2010.sln │ ├── DUIEngine.vcproj │ ├── DUIEngine.vcxproj │ ├── DUIEngine.vcxproj.filters │ ├── DUIEngine.vcxproj.user │ ├── ReadMe.markdown │ ├── cmake │ │ └── mfc.cmake.in │ ├── include │ │ ├── dui │ │ │ ├── Accelerator.h │ │ │ ├── DUISingleton.h │ │ │ ├── DragWnd.h │ │ │ ├── DuiActiveX.h │ │ │ ├── DuiAttrCrack.h │ │ │ ├── DuiCSS.h │ │ │ ├── DuiCalendar.h │ │ │ ├── DuiCaption.h │ │ │ ├── DuiComboBox.h │ │ │ ├── DuiContainer.h │ │ │ ├── DuiDateTimeEdit.h │ │ │ ├── DuiDef.h │ │ │ ├── DuiDefaultLogger.h │ │ │ ├── DuiDropDown.h │ │ │ ├── DuiEventSet.h │ │ │ ├── DuiEventSubscriber.h │ │ │ ├── DuiFrameDropTarget.h │ │ │ ├── DuiHeaderCtrl.h │ │ │ ├── DuiHotKeyCtrl.h │ │ │ ├── DuiImgBase.h │ │ │ ├── DuiImgDecoder_Def.h │ │ │ ├── DuiListCtrl.h │ │ │ ├── DuiLogger.h │ │ │ ├── DuiMenu.h │ │ │ ├── DuiMessageBox.h │ │ │ ├── DuiRichEdit.h │ │ │ ├── DuiScriptModule.h │ │ │ ├── DuiSingletonMap.h │ │ │ ├── DuiSkinBase.h │ │ │ ├── DuiSkinPool.h │ │ │ ├── DuiSliderBar.h │ │ │ ├── DuiSplitWnd.h │ │ │ ├── DuiSystem.h │ │ │ ├── DuiThreadActiveWndManager.h │ │ │ ├── DuiTime.h │ │ │ ├── DuiTimerEx.h │ │ │ ├── DuiTipCtrl.h │ │ │ ├── DuiTreeCtrl.h │ │ │ ├── DuiUtilities.h │ │ │ ├── DuiWindowManager.h │ │ │ ├── DuiWndFactoryManager.h │ │ │ ├── FocusManager.h │ │ │ ├── GradientFillHelper.h │ │ │ ├── MemDC.h │ │ │ ├── MenuWndHook.h │ │ │ ├── Name2ID.h │ │ │ ├── SimpleWnd.h │ │ │ ├── activex │ │ │ │ ├── DuiAxHost.h │ │ │ │ ├── DuiBStr.h │ │ │ │ ├── flash10t.tlh │ │ │ │ ├── flash10t.tli │ │ │ │ ├── wmp.tlh │ │ │ │ └── wmp.tli │ │ │ ├── atl.mini │ │ │ │ ├── atldef.h │ │ │ │ └── duicomcli.h │ │ │ ├── auto_reset.h │ │ │ ├── duiItempanel.h │ │ │ ├── duicolor.h │ │ │ ├── duictrls.h │ │ │ ├── duifontpool.h │ │ │ ├── duiframe.h │ │ │ ├── duihostwnd.h │ │ │ ├── duiimage.h │ │ │ ├── duiimgpool.h │ │ │ ├── duiitembox.h │ │ │ ├── duilistbox.h │ │ │ ├── duilistboxex.h │ │ │ ├── duimsgcracker.h │ │ │ ├── duimsgfilter.h │ │ │ ├── duiobject.h │ │ │ ├── duirealwnd.h │ │ │ ├── duiref.h │ │ │ ├── duires.h │ │ │ ├── duiresprovider.h │ │ │ ├── duiresproviderbase.h │ │ │ ├── duiscrollbar.h │ │ │ ├── duiskin.h │ │ │ ├── duistd.h │ │ │ ├── duistringpool.h │ │ │ ├── duitreebox.h │ │ │ ├── duiwnd.h │ │ │ ├── duiwndcmnctrl.h │ │ │ ├── duiwnddlgfile.h │ │ │ ├── duiwndnotify.h │ │ │ ├── duiwndpanel.h │ │ │ ├── duiwndstyle.h │ │ │ ├── duiwndtabctrl.h │ │ │ ├── gdialpha.h │ │ │ ├── mybuffer.h │ │ │ ├── stree.h │ │ │ └── wtl.mini │ │ │ │ ├── duicoll.h │ │ │ │ ├── duicrack.h │ │ │ │ ├── duigdi.h │ │ │ │ ├── duimisc.h │ │ │ │ ├── duistr.h │ │ │ │ ├── strcpcvt.h │ │ │ │ └── tstring.h │ │ └── pugixml │ │ │ ├── pugiconfig.hpp │ │ │ ├── pugixml.cpp │ │ │ ├── pugixml.hpp │ │ │ └── readme.txt │ ├── license.txt │ ├── src │ │ ├── Accelerator.cpp │ │ ├── DragWnd.cpp │ │ ├── DuiActiveX.cpp │ │ ├── DuiCSS.cpp │ │ ├── DuiCalendar.cpp │ │ ├── DuiCaption.cpp │ │ ├── DuiComboBox.cpp │ │ ├── DuiDateTimeEdit.cpp │ │ ├── DuiDropDown.cpp │ │ ├── DuiEventSet.cpp │ │ ├── DuiFrameDropTarget.cpp │ │ ├── DuiHeaderCtrl.cpp │ │ ├── DuiHotKeyCtrl.cpp │ │ ├── DuiImgDecoder_Def.cpp │ │ ├── DuiListCtrl.cpp │ │ ├── DuiLogger.cpp │ │ ├── DuiMenu.cpp │ │ ├── DuiMessageBox.cpp │ │ ├── DuiRichEdit.cpp │ │ ├── DuiSkinBase.cpp │ │ ├── DuiSkinPool.cpp │ │ ├── DuiSliderBar.cpp │ │ ├── DuiSplitWnd.cpp │ │ ├── DuiSystem.cpp │ │ ├── DuiThreadActiveWndManager.cpp │ │ ├── DuiTimerEx.cpp │ │ ├── DuiTipCtrl.cpp │ │ ├── DuiTreeCtrl.cpp │ │ ├── DuiUtilities.cpp │ │ ├── DuiWindowManager.cpp │ │ ├── DuiWndFactoryManager.cpp │ │ ├── FocusManager.cpp │ │ ├── GradientFillHelper.cpp │ │ ├── MemDC.cpp │ │ ├── MenuWndHook.cpp │ │ ├── Name2ID.cpp │ │ ├── SimpleWnd.cpp │ │ ├── activex │ │ │ ├── DuiAxContainer.cpp │ │ │ ├── DuiAxContainer.hpp │ │ │ ├── DuiAxUtil.hpp │ │ │ └── DuiBStr.cpp │ │ ├── dllmain.cpp │ │ ├── duiDefaultLogger.cpp │ │ ├── duiItempanel.cpp │ │ ├── duicolor.cpp │ │ ├── duifontpool.cpp │ │ ├── duiframe.cpp │ │ ├── duihostwnd.cpp │ │ ├── duiimage.cpp │ │ ├── duiimgpool.cpp │ │ ├── duiitembox.cpp │ │ ├── duilistbox.cpp │ │ ├── duilistboxex.cpp │ │ ├── duirealwnd.cpp │ │ ├── duiresprovider.cpp │ │ ├── duiscrollbar.cpp │ │ ├── duiskin.cpp │ │ ├── duistd.cpp │ │ ├── duistringpool.cpp │ │ ├── duitreebox.cpp │ │ ├── duiwnd.cpp │ │ ├── duiwndcmnctrl.cpp │ │ ├── duiwndpanel.cpp │ │ ├── duiwndstyle.cpp │ │ ├── duiwndtabctrl.cpp │ │ └── gdialpha.cpp │ └── vsprop │ │ ├── duiengine-build.props │ │ ├── duiengine-root.props │ │ ├── shadow-build.props │ │ ├── shadow-prebuild.props │ │ └── wtl-root.props ├── examples │ ├── 3d_demo │ │ ├── 3ddemo.cpp │ │ ├── 3ddemo.rc │ │ ├── 3ddemo.sln │ │ ├── 3ddemo.vcproj │ │ ├── 3ddemo.vcxproj │ │ ├── 3ddemo.vcxproj.filters │ │ ├── 3ddemo.vcxproj.user │ │ ├── 3ddemo2010.sln │ │ ├── Dui3DPreview.cpp │ │ ├── Dui3DPreview.h │ │ ├── MainDlg.cpp │ │ ├── MainDlg.h │ │ ├── ReadMe.txt │ │ ├── UIHander.cpp │ │ ├── UIHander.h │ │ ├── duires │ │ │ ├── 3ddemo.ico │ │ │ ├── name2id.xml │ │ │ ├── winres.h │ │ │ └── winres.rc2 │ │ ├── resource.h │ │ ├── skin │ │ │ ├── image │ │ │ │ ├── btn_sys_close.png │ │ │ │ ├── btn_wnd_checkbox.png │ │ │ │ ├── btn_wnd_radio.png │ │ │ │ ├── check.png │ │ │ │ ├── dlg_bg_frame.png │ │ │ │ ├── focus_checkbox.png │ │ │ │ ├── focus_radio.png │ │ │ │ ├── mini_progress_bar.png │ │ │ │ ├── mini_progress_bg.png │ │ │ │ ├── scrollbar.bmp │ │ │ │ ├── slider.png │ │ │ │ └── test.png │ │ │ ├── index.xml │ │ │ └── xml │ │ │ │ ├── dlg_main.xml │ │ │ │ ├── dlg_msgbox.xml │ │ │ │ └── init.xml │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── vsprops │ │ │ └── duiengine-portal.props │ ├── CMakeLists.txt │ ├── ani_demo │ │ ├── MainDlg.cpp │ │ ├── MainDlg.h │ │ ├── ReadMe.txt │ │ ├── UIHander.cpp │ │ ├── UIHander.h │ │ ├── anidemo.cpp │ │ ├── anidemo.rc │ │ ├── anidemo.sln │ │ ├── anidemo.vcproj │ │ ├── anidemo.vcxproj │ │ ├── anidemo.vcxproj.filters │ │ ├── anidemo.vcxproj.user │ │ ├── anidemo2010.sln │ │ ├── bindemo │ │ │ └── animate_demo.exe │ │ ├── duires │ │ │ ├── anidemo.ico │ │ │ ├── name2id.xml │ │ │ ├── res.h │ │ │ ├── winres.h │ │ │ ├── winres.h.ts │ │ │ ├── winres.rc2 │ │ │ └── winres.rc2.ts │ │ ├── resource.h │ │ ├── skin │ │ │ ├── image │ │ │ │ ├── btn_sys_close.png │ │ │ │ ├── btn_wnd_checkbox.png │ │ │ │ ├── btn_wnd_radio.png │ │ │ │ ├── check.png │ │ │ │ ├── dlg_bg_frame.png │ │ │ │ ├── focus_checkbox.png │ │ │ │ ├── focus_radio.png │ │ │ │ ├── img_busy.png │ │ │ │ └── scrollbar.bmp │ │ │ ├── index.xml │ │ │ └── xml │ │ │ │ ├── dlg_main.xml │ │ │ │ ├── dlg_msgbox.xml │ │ │ │ └── init.xml │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── vsprops │ │ │ └── duiengine-portal.props │ ├── childduiwnd │ │ ├── DuiChild.cpp │ │ ├── DuiChild.h │ │ ├── DuiChildUI.sln │ │ ├── DuiChildUI2010.sln │ │ ├── MainDlg.cpp │ │ ├── MainDlg.h │ │ ├── ReadMe.txt │ │ ├── UIHander.cpp │ │ ├── UIHander.h │ │ ├── duichildui.cpp │ │ ├── duichildui.rc │ │ ├── duichildui.vcproj │ │ ├── duichildui.vcxproj │ │ ├── duichildui.vcxproj.filters │ │ ├── duichildui.vcxproj.user │ │ ├── duires │ │ │ ├── duichildui.ico │ │ │ ├── name2id.xml │ │ │ ├── winres.h │ │ │ ├── winres.h.ts │ │ │ ├── winres.rc2 │ │ │ └── winres.rc2.ts │ │ ├── resource.h │ │ ├── skin │ │ │ ├── image │ │ │ │ ├── btn_sys_close.png │ │ │ │ ├── btn_wnd_checkbox.png │ │ │ │ ├── btn_wnd_radio.png │ │ │ │ ├── check.png │ │ │ │ ├── dlg_bg_frame.png │ │ │ │ ├── focus_checkbox.png │ │ │ │ ├── focus_radio.png │ │ │ │ └── scrollbar.bmp │ │ │ ├── index.xml │ │ │ └── xml │ │ │ │ ├── def_objattr.xml │ │ │ │ ├── def_skin.xml │ │ │ │ ├── def_string.xml │ │ │ │ ├── def_style.xml │ │ │ │ ├── dlg_child.xml │ │ │ │ └── dlg_main.xml │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── vsprops │ │ │ └── duiengine-portal.props │ ├── dui_demo │ │ ├── DuiDemo.vcproj │ │ ├── DuiDemo.vcxproj │ │ ├── DuiDemo.vcxproj.filters │ │ ├── DuiDemo.vcxproj.user │ │ ├── DuiSkinGif.cpp │ │ ├── DuiSkinGif.h │ │ ├── MainDlg.cpp │ │ ├── MainDlg.h │ │ ├── ResModeSelDlg.cpp │ │ ├── ResModeSelDlg.h │ │ ├── UIHander.cpp │ │ ├── UIHander.h │ │ ├── bindemo │ │ │ ├── Dui-Demo_Release.exe │ │ │ └── def_skin.zip │ │ ├── duidemo.cpp │ │ ├── duidemo.rc │ │ ├── duidemo2008.sln │ │ ├── duidemo2010.sln │ │ ├── duires │ │ │ ├── name2id.xml │ │ │ ├── resmode.zip │ │ │ ├── resmode │ │ │ │ ├── index.xml │ │ │ │ ├── layout │ │ │ │ │ ├── def_objattr.xml │ │ │ │ │ ├── def_skin.xml │ │ │ │ │ ├── def_style.xml │ │ │ │ │ └── dlg_main.xml │ │ │ │ └── skins │ │ │ │ │ ├── btn_sys_close.png │ │ │ │ │ ├── dlg_bg_frame.png │ │ │ │ │ ├── img_edit_border.png │ │ │ │ │ ├── scrollbar.png │ │ │ │ │ └── tab_common.png │ │ │ ├── winres.h │ │ │ └── winres.rc2 │ │ ├── lua │ │ │ └── test.lua │ │ ├── resource.h │ │ ├── skin │ │ │ ├── image │ │ │ │ ├── TreeCheckBox.png │ │ │ │ ├── TreeIcon.png │ │ │ │ ├── TreeToggle.png │ │ │ │ ├── bk_shadow.png │ │ │ │ ├── btn_normal_yellow.png │ │ │ │ ├── btn_sys_close.png │ │ │ │ ├── btn_sys_maximize.png │ │ │ │ ├── btn_sys_minimize.png │ │ │ │ ├── btn_sys_restore.png │ │ │ │ ├── btn_wnd_checkbox.png │ │ │ │ ├── btn_wnd_radio.png │ │ │ │ ├── busy1.png │ │ │ │ ├── check.png │ │ │ │ ├── dlg_bg_frame.png │ │ │ │ ├── dropbtn.png │ │ │ │ ├── face0.gif │ │ │ │ ├── focus_checkbox.png │ │ │ │ ├── focus_radio.png │ │ │ │ ├── icon2.png │ │ │ │ ├── icon3.png │ │ │ │ ├── icons.png │ │ │ │ ├── img_dlg_big_frame.png │ │ │ │ ├── img_edit_border.png │ │ │ │ ├── img_logo.ico │ │ │ │ ├── img_menu_bg.png │ │ │ │ ├── main_dlg_body.png │ │ │ │ ├── menu_split_horz.png │ │ │ │ ├── menuborder.png │ │ │ │ ├── menuskin.png │ │ │ │ ├── mini_progress_bar.png │ │ │ │ ├── mini_progress_bg.png │ │ │ │ ├── scrollbar.bmp │ │ │ │ ├── scrollbar.png │ │ │ │ ├── scrollbar2.png │ │ │ │ ├── slider.png │ │ │ │ ├── solve.bmp │ │ │ │ ├── split_horz.png │ │ │ │ ├── split_vert.png │ │ │ │ ├── tab_common.png │ │ │ │ ├── vscrollbar.png │ │ │ │ ├── webbtn_back.png │ │ │ │ ├── webbtn_forward.png │ │ │ │ └── webbtn_refresh.png │ │ │ ├── index.xml │ │ │ └── xml │ │ │ │ ├── def_objattr.xml │ │ │ │ ├── def_skin.xml │ │ │ │ ├── def_string.xml │ │ │ │ ├── def_style.xml │ │ │ │ ├── dlg_main.xml │ │ │ │ ├── dlg_msgbox.xml │ │ │ │ ├── init.xml │ │ │ │ ├── menu_test.xml │ │ │ │ └── page2.xml │ │ ├── skinole │ │ │ ├── ImageOle.cpp │ │ │ └── ImageOle.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── vsprops │ │ │ ├── duiengine-portal.props │ │ │ └── wtl-root.props │ │ ├── wtlhelper │ │ │ └── whwindow.h │ │ └── zipskin │ │ │ ├── DuiResProviderZip.cpp │ │ │ ├── DuiResProviderZip.h │ │ │ ├── ZipArchive.h │ │ │ └── zipArchive.cpp │ ├── duie-ie │ │ ├── MainDlg.cpp │ │ ├── MainDlg.h │ │ ├── ReadMe.txt │ │ ├── UIHander.cpp │ │ ├── UIHander.h │ │ ├── duieie.cpp │ │ ├── duieie.rc │ │ ├── duieie.sln │ │ ├── duieie.vcproj │ │ ├── duieie.vcxproj │ │ ├── duieie.vcxproj.filters │ │ ├── duieie.vcxproj.user │ │ ├── duieie2010.sln │ │ ├── duires │ │ │ ├── duieie.ico │ │ │ └── winres.rc2 │ │ ├── resource.h │ │ ├── skin │ │ │ ├── image │ │ │ │ ├── btn_sys_close.png │ │ │ │ ├── btn_wnd_checkbox.png │ │ │ │ ├── btn_wnd_radio.png │ │ │ │ ├── check.png │ │ │ │ ├── dlg_bg_frame.png │ │ │ │ ├── focus_checkbox.png │ │ │ │ ├── focus_radio.png │ │ │ │ ├── img_edit_border.png │ │ │ │ └── scrollbar.bmp │ │ │ ├── index.xml │ │ │ └── xml │ │ │ │ ├── dlg_main.xml │ │ │ │ ├── dlg_msgbox.xml │ │ │ │ └── init.xml │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── vsprops │ │ │ └── duiengine-portal.props │ ├── duiskin │ │ ├── CMakeLists.txt │ │ ├── duidemo2008.sln │ │ ├── duidemo2010.sln │ │ └── src │ │ │ ├── DuiDemo.vcproj │ │ │ ├── DuiDemo.vcxproj │ │ │ ├── DuiDemo.vcxproj.filters │ │ │ ├── DuiDemo.vcxproj.user │ │ │ ├── DuiSkinGif.cpp │ │ │ ├── DuiSkinGif.h │ │ │ ├── MainDlg.cpp │ │ │ ├── MainDlg.h │ │ │ ├── ResModeSelDlg.cpp │ │ │ ├── ResModeSelDlg.h │ │ │ ├── UIHander.cpp │ │ │ ├── UIHander.h │ │ │ ├── duidemo.cpp │ │ │ ├── duidemo.rc │ │ │ ├── duires │ │ │ ├── duiskin.zip │ │ │ ├── name2id.xml │ │ │ ├── resmode.zip │ │ │ ├── resmode │ │ │ │ ├── image │ │ │ │ │ ├── dlg_bg_frame.png │ │ │ │ │ ├── edit_border.png │ │ │ │ │ ├── scrollbar.png │ │ │ │ │ ├── sysbutton_close.png │ │ │ │ │ └── tab_common.png │ │ │ │ ├── index.xml │ │ │ │ └── xml │ │ │ │ │ ├── def_objattr.xml │ │ │ │ │ ├── def_skin.xml │ │ │ │ │ ├── def_style.xml │ │ │ │ │ └── dlg_main.xml │ │ │ ├── winres.h │ │ │ └── winres.rc2 │ │ │ ├── flash2524.swf │ │ │ ├── resource.h │ │ │ ├── skin │ │ │ ├── image │ │ │ │ ├── app_logo.ico │ │ │ │ ├── bmpmask.bmp │ │ │ │ ├── button_checkbox.png │ │ │ │ ├── button_checkbox2.png │ │ │ │ ├── button_checkbox2_focus.png │ │ │ │ ├── button_checkbox_focus.png │ │ │ │ ├── button_flatbutton.png │ │ │ │ ├── button_pushbutton.png │ │ │ │ ├── button_radiobox.png │ │ │ │ ├── button_radiobox_focus.png │ │ │ │ ├── calendar_button.png │ │ │ │ ├── combo_dropdown.png │ │ │ │ ├── combo_icons.png │ │ │ │ ├── demo_gif.gif │ │ │ │ ├── dialog_bg_frame.png │ │ │ │ ├── dialog_bg_frame_black.png │ │ │ │ ├── dialog_big_frame.png │ │ │ │ ├── dialog_main_body.png │ │ │ │ ├── editbox_border.png │ │ │ │ ├── icons_large.png │ │ │ │ ├── icons_small.png │ │ │ │ ├── listctrl_header.png │ │ │ │ ├── listctrl_scrollbar_vert.png │ │ │ │ ├── menu_bg.png │ │ │ │ ├── menu_border.png │ │ │ │ ├── menu_check.png │ │ │ │ ├── menu_icons.png │ │ │ │ ├── menu_item.png │ │ │ │ ├── menu_seperator.png │ │ │ │ ├── progressbar_bg.png │ │ │ │ ├── progressbar_fg.png │ │ │ │ ├── scrollbar.bmp │ │ │ │ ├── scrollbar.png │ │ │ │ ├── scrollbar2.png │ │ │ │ ├── seperator_horz.png │ │ │ │ ├── seperator_vert.png │ │ │ │ ├── slider_bg.png │ │ │ │ ├── slider_fg.png │ │ │ │ ├── slider_thumb.png │ │ │ │ ├── sysbutton_close.png │ │ │ │ ├── sysbutton_maximize.png │ │ │ │ ├── sysbutton_minimize.png │ │ │ │ ├── sysbutton_restore.png │ │ │ │ ├── tab_page.png │ │ │ │ ├── tree_checkbox.png │ │ │ │ ├── tree_icons.png │ │ │ │ ├── tree_toggle.png │ │ │ │ ├── webbtn_back.png │ │ │ │ ├── webbtn_forward.png │ │ │ │ └── webbtn_refresh.png │ │ │ ├── index.xml │ │ │ └── xml │ │ │ │ ├── def_objattr.xml │ │ │ │ ├── def_skin.xml │ │ │ │ ├── def_string.xml │ │ │ │ ├── def_style.xml │ │ │ │ ├── dlg_main.xml │ │ │ │ ├── dlg_msgbox.xml │ │ │ │ ├── init.xml │ │ │ │ ├── menu_test.xml │ │ │ │ └── page2.xml │ │ │ ├── skinole │ │ │ ├── ImageOle.cpp │ │ │ └── ImageOle.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── vsprops │ │ │ └── duiengine-portal.props │ │ │ ├── wtlhelper │ │ │ └── whwindow.h │ │ │ └── zipskin │ │ │ ├── DuiResProviderZip.cpp │ │ │ ├── DuiResProviderZip.h │ │ │ ├── ZipArchive.h │ │ │ └── zipArchive.cpp │ ├── gifplayer │ │ ├── MainDlg.cpp │ │ ├── MainDlg.h │ │ ├── ReadMe.txt │ │ ├── UIHander.cpp │ │ ├── UIHander.h │ │ ├── duires │ │ │ ├── gifplayer.ico │ │ │ └── winres.rc2 │ │ ├── gif │ │ │ ├── DuiGifControl.cpp │ │ │ ├── DuiGifControl.h │ │ │ ├── DuiSkinGif.cpp │ │ │ └── DuiSkinGif.h │ │ ├── gifplayer.cpp │ │ ├── gifplayer.rc │ │ ├── gifplayer.sln │ │ ├── gifplayer.vcproj │ │ ├── gifplayer.vcxproj │ │ ├── gifplayer.vcxproj.filters │ │ ├── gifplayer.vcxproj.user │ │ ├── gifplayer2010.sln │ │ ├── resource.h │ │ ├── skin │ │ │ ├── image │ │ │ │ ├── 012l.gif │ │ │ │ ├── 06f.gif │ │ │ │ ├── btn_sys_close.png │ │ │ │ ├── btn_wnd_checkbox.png │ │ │ │ ├── btn_wnd_radio.png │ │ │ │ ├── check.png │ │ │ │ ├── dlg_bg_frame.png │ │ │ │ ├── focus_checkbox.png │ │ │ │ ├── focus_radio.png │ │ │ │ └── scrollbar.bmp │ │ │ ├── index.xml │ │ │ └── xml │ │ │ │ ├── dlg_main.xml │ │ │ │ ├── dlg_msgbox.xml │ │ │ │ └── init.xml │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── vsprops │ │ │ └── duiengine-portal.props │ ├── ie-demo2 │ │ ├── DuiWebBrowser.cpp │ │ ├── DuiWebBrowser.h │ │ ├── MainDlg.cpp │ │ ├── MainDlg.h │ │ ├── ReadMe.txt │ │ ├── UIHander.cpp │ │ ├── UIHander.h │ │ ├── duieie.cpp │ │ ├── duieie.rc │ │ ├── duieie.sln │ │ ├── duieie.vcproj │ │ ├── duieie.vcxproj │ │ ├── duieie.vcxproj.filters │ │ ├── duieie.vcxproj.user │ │ ├── duieie2010.sln │ │ ├── duires │ │ │ ├── duieie.ico │ │ │ └── winres.rc2 │ │ ├── resource.h │ │ ├── skin │ │ │ ├── image │ │ │ │ ├── btn_sys_close.png │ │ │ │ ├── btn_wnd_checkbox.png │ │ │ │ ├── btn_wnd_radio.png │ │ │ │ ├── check.png │ │ │ │ ├── dlg_bg_frame.png │ │ │ │ ├── focus_checkbox.png │ │ │ │ ├── focus_radio.png │ │ │ │ ├── img_edit_border.png │ │ │ │ └── scrollbar.bmp │ │ │ ├── index.xml │ │ │ └── xml │ │ │ │ ├── dlg_main.xml │ │ │ │ ├── dlg_msgbox.xml │ │ │ │ └── init.xml │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── vsprops │ │ │ └── duiengine-portal.props │ ├── iectrl.wtl │ │ ├── IECtrl.cpp │ │ ├── IECtrl.h │ │ ├── MainDlg.cpp │ │ ├── MainDlg.h │ │ ├── ReadMe.txt │ │ ├── UIHander.cpp │ │ ├── UIHander.h │ │ ├── duires │ │ │ ├── iectrlwtl.ico │ │ │ ├── name2id.xml │ │ │ ├── winres.h │ │ │ ├── winres.h.ts │ │ │ ├── winres.rc2 │ │ │ └── winres.rc2.ts │ │ ├── iectrlwtl.cpp │ │ ├── iectrlwtl.rc │ │ ├── iectrlwtl.sln │ │ ├── iectrlwtl.vcproj │ │ ├── iectrlwtl.vcxproj │ │ ├── iectrlwtl.vcxproj.filters │ │ ├── iectrlwtl.vcxproj.user │ │ ├── iectrlwtl2010.sln │ │ ├── resource.h │ │ ├── skin │ │ │ ├── image │ │ │ │ ├── btn_sys_close.png │ │ │ │ ├── btn_wnd_checkbox.png │ │ │ │ ├── btn_wnd_radio.png │ │ │ │ ├── check.png │ │ │ │ ├── dlg_bg_frame.png │ │ │ │ ├── focus_checkbox.png │ │ │ │ ├── focus_radio.png │ │ │ │ ├── scrollbar.bmp │ │ │ │ └── tab_common.png │ │ │ ├── index.xml │ │ │ └── xml │ │ │ │ ├── def_objattr.xml │ │ │ │ ├── def_skin.xml │ │ │ │ ├── def_string.xml │ │ │ │ ├── def_style.xml │ │ │ │ └── dlg_main.xml │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── vsprops │ │ │ ├── duiengine-portal.props │ │ │ └── wtl-root.props │ ├── image3d │ │ ├── 3dTransform.h │ │ ├── 3dlib.cpp │ │ ├── 3dlib.h │ │ ├── 3dmatrix.cpp │ │ ├── 3dmatrix.h │ │ ├── 3dtransform.cpp │ │ ├── PerspectiveTransform.h │ │ ├── ReadMe.txt │ │ ├── image3d.sln │ │ ├── image3d.vcproj │ │ ├── image3d.vcxproj │ │ ├── image3d.vcxproj.filters │ │ ├── image3d.vcxproj.user │ │ ├── image3d2010.sln │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── mfc.demo │ │ ├── MainDlg.cpp │ │ ├── MainDlg.h │ │ ├── ReadMe.txt │ │ ├── UIHander.cpp │ │ ├── UIHander.h │ │ ├── duires │ │ │ ├── Project1.ico │ │ │ ├── name2id.xml │ │ │ ├── winres.h │ │ │ ├── winres.h.ts │ │ │ ├── winres.rc2 │ │ │ └── winres.rc2.ts │ │ ├── mfcdemo.cpp │ │ ├── mfcdemo.h │ │ ├── mfcdemo.rc │ │ ├── mfcdemo.sln │ │ ├── mfcdemo.vcproj │ │ ├── mfcdemo.vcxproj │ │ ├── mfcdemo.vcxproj.filters │ │ ├── mfcdemo.vcxproj.user │ │ ├── mfcdemo2010.sln │ │ ├── mfcdemoDlg.cpp │ │ ├── mfcdemoDlg.h │ │ ├── res │ │ │ └── mfcdemo.ico │ │ ├── resource.h │ │ ├── skin │ │ │ ├── image │ │ │ │ ├── btn_sys_close.png │ │ │ │ ├── btn_wnd_checkbox.png │ │ │ │ ├── btn_wnd_radio.png │ │ │ │ ├── check.png │ │ │ │ ├── dlg_bg_frame.png │ │ │ │ ├── focus_checkbox.png │ │ │ │ ├── focus_radio.png │ │ │ │ └── scrollbar.bmp │ │ │ ├── index.xml │ │ │ └── xml │ │ │ │ ├── dlg_main.xml │ │ │ │ ├── dlg_msgbox.xml │ │ │ │ └── init.xml │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ └── vsprops │ │ │ └── duiengine-portal.props │ ├── qq_demo │ │ ├── Dui3DView.cpp │ │ ├── Dui3DView.h │ │ ├── LoginDlg.cpp │ │ ├── LoginDlg.h │ │ ├── QQDemo.cpp │ │ ├── QQDemo.rc │ │ ├── QQDemo.sln │ │ ├── QQDemo.vcproj │ │ ├── QQDemo.vcxproj │ │ ├── QQDemo.vcxproj.filters │ │ ├── QQDemo.vcxproj.user │ │ ├── QQDemo2010.sln │ │ ├── ReadMe.txt │ │ ├── UIHander.cpp │ │ ├── UIHander.h │ │ ├── bindemo │ │ │ ├── QQDemo.exe │ │ │ └── qqres │ │ │ │ └── login │ │ │ │ ├── afternoon.swf │ │ │ │ ├── morning.swf │ │ │ │ ├── night.swf │ │ │ │ └── noon.swf │ │ ├── duibuttonex.cpp │ │ ├── duibuttonex.h │ │ ├── duiembedbutton.cpp │ │ ├── duiembedbutton.h │ │ ├── duiembededit.cpp │ │ ├── duiembededit.h │ │ ├── duires │ │ │ ├── QQDemo.ico │ │ │ └── winres.rc2 │ │ ├── duiturn3dview.cpp │ │ ├── duiturn3dview.h │ │ ├── image3d │ │ │ ├── 3dTransform.h │ │ │ ├── 3dlib.cpp │ │ │ ├── 3dlib.h │ │ │ ├── 3dmatrix.cpp │ │ │ ├── 3dmatrix.h │ │ │ ├── 3dtransform.cpp │ │ │ └── PerspectiveTransform.h │ │ ├── resource.h │ │ ├── skin │ │ │ ├── image │ │ │ │ ├── 00680[26x26x8BPP].png │ │ │ │ ├── 00692[31x22x8BPP].png │ │ │ │ ├── 00693[58x22x8BPP].png │ │ │ │ ├── BT_KEY_BOARD.png │ │ │ │ ├── LOGIN_LIST_CLOSE.png │ │ │ │ ├── allbtn_down.png │ │ │ │ ├── allbtn_nor.png │ │ │ │ ├── allbtn_over.png │ │ │ │ ├── border.png │ │ │ │ ├── btn_dropdown.png │ │ │ │ ├── btn_dropdown_set.png │ │ │ │ ├── btn_get_pswd.png │ │ │ │ ├── btn_login_set.png │ │ │ │ ├── btn_register.png │ │ │ │ ├── btn_sys_close.png │ │ │ │ ├── btn_sys_min.png │ │ │ │ ├── btn_wnd_checkbox.png │ │ │ │ ├── btn_wnd_radio.png │ │ │ │ ├── check.png │ │ │ │ ├── checkbox_icon.png │ │ │ │ ├── dlg_bg_frame.png │ │ │ │ ├── focus_checkbox.png │ │ │ │ ├── focus_radio.png │ │ │ │ ├── gray_border.png │ │ │ │ ├── head_bkg.png │ │ │ │ ├── header.png │ │ │ │ ├── icons.png │ │ │ │ ├── img_edit_border.png │ │ │ │ ├── img_edit_border2.png │ │ │ │ ├── img_edit_border_set.png │ │ │ │ ├── imoffline.png │ │ │ │ ├── keyboard1.png │ │ │ │ ├── keyboard2.png │ │ │ │ ├── login_2code_button.PNG │ │ │ │ ├── login_body1.png │ │ │ │ ├── login_btn_down.png │ │ │ │ ├── login_btn_hover.png │ │ │ │ ├── login_btn_normal.png │ │ │ │ ├── login_button.png │ │ │ │ ├── login_button2.PNG │ │ │ │ ├── login_foot_bk.PNG │ │ │ │ ├── login_set_bk1.PNG │ │ │ │ ├── login_set_bk2.PNG │ │ │ │ ├── login_set_title.PNG │ │ │ │ ├── menu.png │ │ │ │ ├── menu_bkg_board.png │ │ │ │ ├── menu_split_horz.png │ │ │ │ ├── menuborder.png │ │ │ │ ├── menuskin.png │ │ │ │ ├── scrollbar.bmp │ │ │ │ ├── set_btn_down.png │ │ │ │ ├── set_btn_hover.png │ │ │ │ ├── set_btn_normal.png │ │ │ │ ├── small_head.jpg │ │ │ │ ├── status_busy.png │ │ │ │ ├── status_invisible.png │ │ │ │ ├── status_leave.png │ │ │ │ ├── status_online.png │ │ │ │ ├── status_qme.png │ │ │ │ └── status_stop.png │ │ │ ├── index.xml │ │ │ └── xml │ │ │ │ ├── dlg_main.xml │ │ │ │ ├── dlg_msgbox.xml │ │ │ │ ├── init.xml │ │ │ │ └── menu_status1.xml │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── vsprops │ │ │ └── duiengine-portal.props │ │ └── wtlhelper │ │ │ └── whwindow.h │ └── 说明.txt ├── extra │ └── controls.extend │ │ ├── include │ │ ├── extractrls │ │ │ ├── ColourPopup.h │ │ │ ├── DuiColorPicker.h │ │ │ ├── DuiSpinEdit.h │ │ │ ├── DuiWebBrowser.h │ │ │ ├── DxDateTimeEdit.h │ │ │ ├── DxMonthPicker.h │ │ │ └── Tooltipctrl.h │ │ └── gif │ │ │ ├── DuiGifControl.h │ │ │ └── DuiSkinGif.h │ │ ├── readme.txt │ │ └── src │ │ ├── extractrls │ │ ├── ColourPopup.cpp │ │ ├── DuiColorPicker.cpp │ │ ├── DuiSpinEdit.cpp │ │ ├── DuiWebBrowser.cpp │ │ ├── DxDateTimeEdit.cpp │ │ └── DxMonthPicker.cpp │ │ └── gif │ │ ├── DuiGifControl.cpp │ │ └── DuiSkinGif.cpp ├── installation │ ├── CMakeLists.txt │ ├── WTL81 │ │ ├── AppWiz │ │ │ ├── Files │ │ │ │ ├── HTML │ │ │ │ │ └── 1033 │ │ │ │ │ │ ├── AppType.htm │ │ │ │ │ │ ├── UIFeatures.htm │ │ │ │ │ │ └── default.htm │ │ │ │ ├── Images │ │ │ │ │ ├── WTLApp70.gif │ │ │ │ │ └── WTLApp70_Background.gif │ │ │ │ ├── Scripts │ │ │ │ │ └── 1033 │ │ │ │ │ │ └── default.js │ │ │ │ ├── Templates │ │ │ │ │ └── 1033 │ │ │ │ │ │ ├── AboutDlg.cpp │ │ │ │ │ │ ├── AboutDlg.h │ │ │ │ │ │ ├── ChildFrm.cpp │ │ │ │ │ │ ├── ChildFrm.h │ │ │ │ │ │ ├── Frame.cpp │ │ │ │ │ │ ├── Frame.h │ │ │ │ │ │ ├── MainDlg.cpp │ │ │ │ │ │ ├── MainDlg.h │ │ │ │ │ │ ├── Templates.inf │ │ │ │ │ │ ├── View.cpp │ │ │ │ │ │ ├── View.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── root.cpp │ │ │ │ │ │ ├── root.h │ │ │ │ │ │ ├── root.ico │ │ │ │ │ │ ├── root.idl │ │ │ │ │ │ ├── root.rc │ │ │ │ │ │ ├── root.rgs │ │ │ │ │ │ ├── rootDoc.ico │ │ │ │ │ │ ├── rootidl.h │ │ │ │ │ │ ├── rootps.def │ │ │ │ │ │ ├── rootps.mk │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ ├── stdafx.h │ │ │ │ │ │ └── toolbar.bmp │ │ │ │ ├── WTLAppWiz.ico │ │ │ │ ├── WTLAppWiz.vsdir │ │ │ │ └── WTLAppWiz.vsz │ │ │ ├── setup70.js │ │ │ ├── setup71.js │ │ │ ├── setup80.js │ │ │ ├── setup80x.js │ │ │ ├── setup90.js │ │ │ └── setup90x.js │ │ ├── AppWizCE │ │ │ ├── Files │ │ │ │ ├── HTML │ │ │ │ │ └── 1033 │ │ │ │ │ │ ├── AppType.htm │ │ │ │ │ │ ├── Platforms.htm │ │ │ │ │ │ ├── UIFeatures.htm │ │ │ │ │ │ └── default.htm │ │ │ │ ├── Images │ │ │ │ │ ├── WTLApp70.gif │ │ │ │ │ └── WTLApp70_Background.gif │ │ │ │ ├── Scripts │ │ │ │ │ └── 1033 │ │ │ │ │ │ └── default.js │ │ │ │ ├── Templates │ │ │ │ │ └── 1033 │ │ │ │ │ │ ├── AboutDlg.cpp │ │ │ │ │ │ ├── AboutDlg.h │ │ │ │ │ │ ├── Frame.cpp │ │ │ │ │ │ ├── Frame.h │ │ │ │ │ │ ├── MainDlg.cpp │ │ │ │ │ │ ├── MainDlg.h │ │ │ │ │ │ ├── Templates.inf │ │ │ │ │ │ ├── View.cpp │ │ │ │ │ │ ├── View.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── root.cpp │ │ │ │ │ │ ├── root.h │ │ │ │ │ │ ├── root.ico │ │ │ │ │ │ ├── root.idl │ │ │ │ │ │ ├── root.rc │ │ │ │ │ │ ├── root.rc2 │ │ │ │ │ │ ├── root.rgs │ │ │ │ │ │ ├── rootidl.h │ │ │ │ │ │ ├── rootps.def │ │ │ │ │ │ ├── rootps.mk │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ ├── stdafx.h │ │ │ │ │ │ └── toolbar.bmp │ │ │ │ ├── WTLAppWizCE.ico │ │ │ │ ├── WTLAppWizCE.vsdir │ │ │ │ └── WTLAppWizCE.vsz │ │ │ ├── setup80.js │ │ │ └── setup90.js │ │ ├── AppWizMobile │ │ │ ├── Files │ │ │ │ ├── 1033 │ │ │ │ │ └── NewStyles.css │ │ │ │ ├── HTML │ │ │ │ │ └── 1033 │ │ │ │ │ │ ├── AppType.htm │ │ │ │ │ │ ├── Platforms.htm │ │ │ │ │ │ ├── UIFeatures.htm │ │ │ │ │ │ └── default.htm │ │ │ │ ├── Images │ │ │ │ │ ├── AppWizCE2.gif │ │ │ │ │ ├── AppWizCE2_Background.gif │ │ │ │ │ ├── WTLApp70.gif │ │ │ │ │ └── WTLApp70_Background.gif │ │ │ │ ├── Scripts │ │ │ │ │ └── 1033 │ │ │ │ │ │ └── default.js │ │ │ │ ├── Templates │ │ │ │ │ └── 1033 │ │ │ │ │ │ ├── AboutDlg.cpp │ │ │ │ │ │ ├── AboutDlg.h │ │ │ │ │ │ ├── Frame.cpp │ │ │ │ │ │ ├── Frame.h │ │ │ │ │ │ ├── MainDlg.cpp │ │ │ │ │ │ ├── MainDlg.h │ │ │ │ │ │ ├── Templates.inf │ │ │ │ │ │ ├── View.cpp │ │ │ │ │ │ ├── View.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── root.cpp │ │ │ │ │ │ ├── root.ico │ │ │ │ │ │ ├── root.rc2 │ │ │ │ │ │ ├── rootppc.rc │ │ │ │ │ │ ├── rootsp.rc │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ ├── stdafx.h │ │ │ │ │ │ └── toolbar.bmp │ │ │ │ ├── WTLMobile.ico │ │ │ │ ├── WTLMobile.vsdir │ │ │ │ └── WTLMobile.vsz │ │ │ ├── setup80.js │ │ │ └── setup90.js │ │ ├── CPL.TXT │ │ ├── Include │ │ │ ├── atlapp.h │ │ │ ├── atlcrack.h │ │ │ ├── atlctrls.h │ │ │ ├── atlctrlw.h │ │ │ ├── atlctrlx.h │ │ │ ├── atlddx.h │ │ │ ├── atldlgs.h │ │ │ ├── atldwm.h │ │ │ ├── atlfind.h │ │ │ ├── atlframe.h │ │ │ ├── atlgdi.h │ │ │ ├── atlmisc.h │ │ │ ├── atlprint.h │ │ │ ├── atlres.h │ │ │ ├── atlresce.h │ │ │ ├── atlscrl.h │ │ │ ├── atlsplit.h │ │ │ ├── atltheme.h │ │ │ ├── atluser.h │ │ │ ├── atlwince.h │ │ │ └── atlwinx.h │ │ ├── Samples │ │ │ ├── Aero │ │ │ │ ├── AboutDlg.h │ │ │ │ ├── Aero.cpp │ │ │ │ ├── Aero.h │ │ │ │ ├── Aero.rc │ │ │ │ ├── Aero.sln │ │ │ │ ├── Aero.vcproj │ │ │ │ ├── AeroView.h │ │ │ │ ├── MainFrm.h │ │ │ │ ├── res │ │ │ │ │ ├── Aero.ico │ │ │ │ │ └── toolbar.bmp │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── Alpha │ │ │ │ ├── Alpha.cpp │ │ │ │ ├── Alpha.dsp │ │ │ │ ├── Alpha.dsw │ │ │ │ ├── Alpha.h │ │ │ │ ├── Alpha.rc │ │ │ │ ├── Alpha.sln │ │ │ │ ├── Alpha.vcproj │ │ │ │ ├── aboutdlg.h │ │ │ │ ├── mainfrm.h │ │ │ │ ├── readme.txt │ │ │ │ ├── res │ │ │ │ │ ├── Alpha.ico │ │ │ │ │ ├── toolbar.bmp │ │ │ │ │ └── toolbar_old.bmp │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── view.h │ │ │ ├── BmpView │ │ │ │ ├── BmpView.cpp │ │ │ │ ├── BmpView.dsp │ │ │ │ ├── BmpView.dsw │ │ │ │ ├── BmpView.rc │ │ │ │ ├── BmpView.sln │ │ │ │ ├── BmpView.vcproj │ │ │ │ ├── BmpViewCE.rc │ │ │ │ ├── BmpViewCE.vcp │ │ │ │ ├── BmpViewCE.vcw │ │ │ │ ├── BmpViewPPC.rc │ │ │ │ ├── BmpViewPPC.vcp │ │ │ │ ├── BmpViewPPC.vcw │ │ │ │ ├── list.h │ │ │ │ ├── mainfrm.h │ │ │ │ ├── props.h │ │ │ │ ├── res │ │ │ │ │ ├── BmpView.ico │ │ │ │ │ ├── Toolbar.bmp │ │ │ │ │ └── ToolbarCE.bmp │ │ │ │ ├── resource.h │ │ │ │ ├── resourcece.h │ │ │ │ ├── resourceppc.h │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── view.h │ │ │ ├── GuidGen │ │ │ │ ├── GuidGen.cpp │ │ │ │ ├── GuidGen.dsp │ │ │ │ ├── GuidGen.dsw │ │ │ │ ├── GuidGen.rc │ │ │ │ ├── GuidGen.sln │ │ │ │ ├── GuidGen.vcproj │ │ │ │ ├── GuidGenCE.rc │ │ │ │ ├── GuidGenCE.vcp │ │ │ │ ├── GuidGenCE.vcw │ │ │ │ ├── aboutdlg.h │ │ │ │ ├── maindlg.h │ │ │ │ ├── res │ │ │ │ │ └── GuidGen.ico │ │ │ │ ├── resource.h │ │ │ │ ├── resourcece.h │ │ │ │ ├── stdatl.cpp │ │ │ │ └── stdatl.h │ │ │ ├── ImageView │ │ │ │ ├── ImageView.EVC.rc │ │ │ │ ├── ImageView.VS.rc │ │ │ │ ├── ImageView.VS.rc2 │ │ │ │ ├── ImageView.cpp │ │ │ │ ├── ImageView.sln │ │ │ │ ├── ImageView.vcp │ │ │ │ ├── ImageView.vcproj │ │ │ │ ├── ImageView.vcw │ │ │ │ ├── ImageViewdlg.h │ │ │ │ ├── ImageViewview.h │ │ │ │ ├── mainfrm.h │ │ │ │ ├── res │ │ │ │ │ ├── BmpView.ico │ │ │ │ │ ├── bitmap1.bmp │ │ │ │ │ └── bitmap2.bmp │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── MDIDocVw │ │ │ │ ├── HELLO.ICO │ │ │ │ ├── MDI.ICO │ │ │ │ ├── MDI.cpp │ │ │ │ ├── MDI.dsp │ │ │ │ ├── MDI.dsw │ │ │ │ ├── MDI.rc │ │ │ │ ├── MDI.sln │ │ │ │ ├── MDI.vcproj │ │ │ │ ├── mainfrm.h │ │ │ │ ├── res │ │ │ │ │ ├── HelloDoc.ico │ │ │ │ │ ├── MDI.ICO │ │ │ │ │ ├── MDI.RC2 │ │ │ │ │ ├── Toolbar.bmp │ │ │ │ │ └── idr_boun.ico │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── MTPad │ │ │ │ ├── MTPad.cpp │ │ │ │ ├── MTPad.dsp │ │ │ │ ├── MTPad.dsw │ │ │ │ ├── MTPad.h │ │ │ │ ├── MTPad.rc │ │ │ │ ├── MTPad.sln │ │ │ │ ├── MTPad.vcproj │ │ │ │ ├── MTPadCE.rc │ │ │ │ ├── MTPadCE.vcp │ │ │ │ ├── MTPadCE.vcw │ │ │ │ ├── aboutdlg.h │ │ │ │ ├── finddlg.h │ │ │ │ ├── mainfrm.h │ │ │ │ ├── res │ │ │ │ │ ├── MTPad.ico │ │ │ │ │ ├── MTPadDoc.ico │ │ │ │ │ ├── Toolbar.bmp │ │ │ │ │ ├── ToolbarCE.bmp │ │ │ │ │ └── printpre.bmp │ │ │ │ ├── resource.h │ │ │ │ ├── resourcece.h │ │ │ │ ├── stdatl.cpp │ │ │ │ ├── stdatl.h │ │ │ │ └── view.h │ │ │ ├── MiniPie │ │ │ │ ├── MiniPie.cpp │ │ │ │ ├── MiniPie.rc2 │ │ │ │ ├── MiniPie.sln │ │ │ │ ├── MiniPie.vcproj │ │ │ │ ├── MiniPieFrame.cpp │ │ │ │ ├── MiniPieFrame.h │ │ │ │ ├── MiniPieppc.rc │ │ │ │ ├── MiniPiesp.rc │ │ │ │ ├── UrlDlg.cpp │ │ │ │ ├── UrlDlg.h │ │ │ │ ├── res │ │ │ │ │ └── MiniPie.ico │ │ │ │ ├── resourceppc.h │ │ │ │ ├── resourcesp.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── SPControls │ │ │ │ ├── SPcontrols.cpp │ │ │ │ ├── SPcontrols.rc │ │ │ │ ├── SPcontrols.sln │ │ │ │ ├── SPcontrols.vcp │ │ │ │ ├── SPcontrols.vcproj │ │ │ │ ├── SPcontrols.vcw │ │ │ │ ├── atlcesp.rc │ │ │ │ ├── maindlg.h │ │ │ │ ├── res │ │ │ │ │ └── SPcontrols.ico │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── TabBrowser │ │ │ │ ├── AboutDlg.h │ │ │ │ ├── AddressCombo.h │ │ │ │ ├── BrowserView.h │ │ │ │ ├── CustomTabView.h │ │ │ │ ├── MainFrm.h │ │ │ │ ├── OpenDlg.h │ │ │ │ ├── TabBrowser.cpp │ │ │ │ ├── TabBrowser.h │ │ │ │ ├── TabBrowser.rc │ │ │ │ ├── TabBrowser60.dsp │ │ │ │ ├── TabBrowser60.dsw │ │ │ │ ├── TabBrowser70.sln │ │ │ │ ├── TabBrowser70.vcproj │ │ │ │ ├── TabBrowser71.sln │ │ │ │ ├── TabBrowser71.vcproj │ │ │ │ ├── TabBrowser80.sln │ │ │ │ ├── TabBrowser80.vcproj │ │ │ │ ├── TabBrowser80x.sln │ │ │ │ ├── TabBrowser80x.vcproj │ │ │ │ ├── WindowsDlg.h │ │ │ │ ├── res │ │ │ │ │ ├── Go.bmp │ │ │ │ │ ├── PageImage.bmp │ │ │ │ │ ├── TabBrowser.ico │ │ │ │ │ ├── TabToolbar.bmp │ │ │ │ │ ├── Toolbar.bmp │ │ │ │ │ └── Toolbar_Big.bmp │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── WTLExplorer │ │ │ │ ├── ExplorerCombo.H │ │ │ │ ├── MainFrm.Cpp │ │ │ │ ├── ShellMgr.Cpp │ │ │ │ ├── ShellMgr.H │ │ │ │ ├── WTLExplorer.cpp │ │ │ │ ├── WTLExplorer.dsp │ │ │ │ ├── WTLExplorer.dsw │ │ │ │ ├── WTLExplorer.rc │ │ │ │ ├── mainfrm.h │ │ │ │ ├── res │ │ │ │ │ ├── Toolbar.bmp │ │ │ │ │ ├── WTLExplorer.ico │ │ │ │ │ ├── go.bmp │ │ │ │ │ └── idt_go1.bmp │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ └── Wizard97Test │ │ │ │ ├── Wizard │ │ │ │ ├── FolderDialogStatusText.h │ │ │ │ ├── TestWizard.cpp │ │ │ │ ├── TestWizard.h │ │ │ │ ├── TestWizardCompletionPage.cpp │ │ │ │ ├── TestWizardCompletionPage.h │ │ │ │ ├── TestWizardFilePreviewPage.cpp │ │ │ │ ├── TestWizardFilePreviewPage.h │ │ │ │ ├── TestWizardInfo.cpp │ │ │ │ ├── TestWizardInfo.h │ │ │ │ ├── TestWizardOutputPage.cpp │ │ │ │ ├── TestWizardOutputPage.h │ │ │ │ ├── TestWizardPathFilterPage.cpp │ │ │ │ ├── TestWizardPathFilterPage.h │ │ │ │ ├── TestWizardSheet.cpp │ │ │ │ ├── TestWizardSheet.h │ │ │ │ ├── TestWizardWelcomePage.cpp │ │ │ │ └── TestWizardWelcomePage.h │ │ │ │ ├── Wizard97Test.cpp │ │ │ │ ├── Wizard97Test.dsp │ │ │ │ ├── Wizard97Test.dsw │ │ │ │ ├── Wizard97Test.h │ │ │ │ ├── Wizard97Test.rc │ │ │ │ ├── Wizard97Test.sln │ │ │ │ ├── Wizard97Test.vcproj │ │ │ │ ├── help │ │ │ │ ├── Context.h │ │ │ │ ├── Context.txt │ │ │ │ ├── TestWizard_Completion.html │ │ │ │ ├── TestWizard_Completion.png │ │ │ │ ├── TestWizard_Output.html │ │ │ │ ├── TestWizard_Output.png │ │ │ │ ├── TestWizard_PathFilter.html │ │ │ │ ├── TestWizard_PathFilter.png │ │ │ │ ├── TestWizard_PreviewFileList.html │ │ │ │ ├── TestWizard_PreviewFileList.png │ │ │ │ ├── TestWizard_Welcome.html │ │ │ │ ├── TestWizard_Welcome.png │ │ │ │ ├── Wizard97Test.hhc │ │ │ │ ├── Wizard97Test.hhk │ │ │ │ ├── Wizard97Test.hhp │ │ │ │ ├── Wizard97Test.html │ │ │ │ ├── readme-help.txt │ │ │ │ └── style.css │ │ │ │ ├── res │ │ │ │ ├── Wizard97Test.ico │ │ │ │ ├── header.bmp │ │ │ │ └── watermark.bmp │ │ │ │ ├── resource.h │ │ │ │ ├── resource.hm │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ └── readme.htm │ ├── bin │ │ └── bin.dir │ ├── include │ │ ├── dui │ │ │ ├── Accelerator.h │ │ │ ├── DUISingleton.h │ │ │ ├── DragWnd.h │ │ │ ├── DuiActiveX.h │ │ │ ├── DuiAttrCrack.h │ │ │ ├── DuiCSS.h │ │ │ ├── DuiCalendar.h │ │ │ ├── DuiCaption.h │ │ │ ├── DuiComboBox.h │ │ │ ├── DuiContainer.h │ │ │ ├── DuiDateTimeEdit.h │ │ │ ├── DuiDef.h │ │ │ ├── DuiDefaultLogger.h │ │ │ ├── DuiDropDown.h │ │ │ ├── DuiEventSet.h │ │ │ ├── DuiEventSubscriber.h │ │ │ ├── DuiFrameDropTarget.h │ │ │ ├── DuiHeaderCtrl.h │ │ │ ├── DuiHotKeyCtrl.h │ │ │ ├── DuiImgBase.h │ │ │ ├── DuiImgDecoder_Def.h │ │ │ ├── DuiListCtrl.h │ │ │ ├── DuiLogger.h │ │ │ ├── DuiMenu.h │ │ │ ├── DuiMessageBox.h │ │ │ ├── DuiRichEdit.h │ │ │ ├── DuiScriptModule.h │ │ │ ├── DuiSingletonMap.h │ │ │ ├── DuiSkinBase.h │ │ │ ├── DuiSkinPool.h │ │ │ ├── DuiSliderBar.h │ │ │ ├── DuiSplitWnd.h │ │ │ ├── DuiSystem.h │ │ │ ├── DuiThreadActiveWndManager.h │ │ │ ├── DuiTime.h │ │ │ ├── DuiTimerEx.h │ │ │ ├── DuiTipCtrl.h │ │ │ ├── DuiTreeCtrl.h │ │ │ ├── DuiUtilities.h │ │ │ ├── DuiWindowManager.h │ │ │ ├── DuiWndFactoryManager.h │ │ │ ├── FocusManager.h │ │ │ ├── GradientFillHelper.h │ │ │ ├── MemDC.h │ │ │ ├── MenuWndHook.h │ │ │ ├── Name2ID.h │ │ │ ├── SimpleWnd.h │ │ │ ├── activex │ │ │ │ ├── DuiAxHost.h │ │ │ │ ├── DuiBStr.h │ │ │ │ ├── flash10t.tlh │ │ │ │ ├── flash10t.tli │ │ │ │ ├── wmp.tlh │ │ │ │ └── wmp.tli │ │ │ ├── atl.mini │ │ │ │ ├── atldef.h │ │ │ │ └── duicomcli.h │ │ │ ├── auto_reset.h │ │ │ ├── duiItempanel.h │ │ │ ├── duicolor.h │ │ │ ├── duictrls.h │ │ │ ├── duifontpool.h │ │ │ ├── duiframe.h │ │ │ ├── duihostwnd.h │ │ │ ├── duiimage.h │ │ │ ├── duiimgpool.h │ │ │ ├── duiitembox.h │ │ │ ├── duilistbox.h │ │ │ ├── duilistboxex.h │ │ │ ├── duimsgcracker.h │ │ │ ├── duimsgfilter.h │ │ │ ├── duiobject.h │ │ │ ├── duirealwnd.h │ │ │ ├── duiref.h │ │ │ ├── duires.h │ │ │ ├── duiresprovider.h │ │ │ ├── duiresproviderbase.h │ │ │ ├── duiscrollbar.h │ │ │ ├── duiskin.h │ │ │ ├── duistd.h │ │ │ ├── duistringpool.h │ │ │ ├── duitreebox.h │ │ │ ├── duiwnd.h │ │ │ ├── duiwndcmnctrl.h │ │ │ ├── duiwnddlgfile.h │ │ │ ├── duiwndnotify.h │ │ │ ├── duiwndpanel.h │ │ │ ├── duiwndstyle.h │ │ │ ├── duiwndtabctrl.h │ │ │ ├── gdialpha.h │ │ │ ├── mybuffer.h │ │ │ ├── stree.hpp │ │ │ └── wtl.mini │ │ │ │ ├── duicoll.h │ │ │ │ ├── duicrack.h │ │ │ │ ├── duigdi.h │ │ │ │ ├── duimisc.h │ │ │ │ ├── duistr.h │ │ │ │ ├── strcpcvt.h │ │ │ │ └── tstring.h │ │ ├── include.dir │ │ ├── modules │ │ │ ├── lua-5.1 │ │ │ │ ├── lauxlib.h │ │ │ │ ├── lua.h │ │ │ │ ├── luaconf.h │ │ │ │ └── lualib.h │ │ │ └── luaScriptModule │ │ │ │ └── luaScriptModule.h │ │ ├── pugixml │ │ │ ├── pugiconfig.hpp │ │ │ ├── pugixml.cpp │ │ │ ├── pugixml.hpp │ │ │ └── readme.txt │ │ └── zlib │ │ │ ├── zconf.h │ │ │ └── zlib.h │ ├── lib │ │ └── library.dir │ ├── tools │ │ ├── 7z.exe │ │ ├── SoUIEditor-Release.exe │ │ ├── residbuilder2.exe │ │ ├── residbuilder21.exe │ │ └── tools.dir │ └── vsprops │ │ ├── duiengine-portal.props │ │ └── wtl-root.props └── tools │ ├── SoUIEditor │ ├── FileHelper.h │ ├── MainDlg.cpp │ ├── MainDlg.h │ ├── NewFileDlg.cpp │ ├── NewFileDlg.h │ ├── NewSkinDlg.cpp │ ├── NewSkinDlg.h │ ├── ReadMe.txt │ ├── SciLexer.dll │ ├── SciLexer.h │ ├── Scintilla.h │ ├── ScintillaWnd.cpp │ ├── ScintillaWnd.h │ ├── SkinView.cpp │ ├── SkinView.h │ ├── SoUIEditor.cpp │ ├── SoUIEditor.rc │ ├── SoUIEditor.sln │ ├── SoUIEditor.vcproj │ ├── SoUIEditor.vcproj.huangjx-PC.huangjx.user │ ├── SoUIEditor.vcxproj │ ├── SoUIEditor.vcxproj.filters │ ├── SoUIEditor.vcxproj.user │ ├── SoUIEditor2010.sln │ ├── SoUIHelper.cpp │ ├── SoUIHelper.h │ ├── UIHander.cpp │ ├── UIHander.h │ ├── colorpicker │ │ ├── ColourPopup.cpp │ │ ├── ColourPopup.h │ │ ├── DuiColorPicker.cpp │ │ ├── DuiColorPicker.h │ │ └── Tooltipctrl.h │ ├── duires │ │ ├── SoUIEditor.ico │ │ └── winres.rc2 │ ├── resource.h │ ├── skin │ │ ├── image │ │ │ ├── btn_normal_yellow.png │ │ │ ├── btn_sys_close.png │ │ │ ├── btn_sys_maximize.png │ │ │ ├── btn_sys_minimize.png │ │ │ ├── btn_sys_restore.png │ │ │ ├── btn_wnd_checkbox.png │ │ │ ├── btn_wnd_radio.png │ │ │ ├── check.png │ │ │ ├── dlg_bg_frame.png │ │ │ ├── dropbtn.png │ │ │ ├── focus_checkbox.png │ │ │ ├── focus_radio.png │ │ │ ├── img_edit_border.png │ │ │ ├── scrollbar.bmp │ │ │ ├── split_horz.png │ │ │ ├── split_vert.png │ │ │ └── tab_common.png │ │ ├── index.xml │ │ └── xml │ │ │ ├── dlg_main.xml │ │ │ ├── dlg_msgbox.xml │ │ │ ├── dlg_newfile.xml │ │ │ ├── dlg_newskin.xml │ │ │ └── init.xml │ ├── stdafx.cpp │ ├── stdafx.h │ └── vsprops │ │ └── duiengine-portal.props │ ├── residbuilder │ ├── ReadMe.txt │ ├── XGetopt.cpp │ ├── XGetopt.h │ ├── residbuilder.cpp │ ├── residbuilder2.sln │ ├── residbuilder2.vcproj │ ├── residbuilder2.vcxproj │ ├── residbuilder2.vcxproj.filters │ ├── residbuilder2.vcxproj.user │ ├── residbuilder2A.sln │ ├── stdafx.cpp │ ├── stdafx.h │ └── tinyxml │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp │ └── wizard.setup │ ├── MainDlg.h │ ├── res │ └── wizard.setup.ico │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── vsprops │ └── wtl-root.props │ ├── wizard.setup.cpp │ ├── wizard.setup.h │ ├── wizard.setup.rc │ ├── wizard.setup.sln │ ├── wizard.setup.vcproj │ ├── wizard.setup.vcxproj │ ├── wizard.setup.vcxproj.filters │ ├── wizard.setup.vcxproj.user │ └── wizard.setup2010.sln └── tools ├── 7z.exe ├── SoUIEditor-Release.exe ├── residbuilder2.exe ├── residbuilder21.exe ├── tools.dir └── wizard ├── DuiEngineWizard ├── 2052 │ ├── Images │ │ ├── DottedHori.gif │ │ ├── DottedVert.gif │ │ └── spacer.gif │ └── NewStyles.css ├── HTML │ └── 2052 │ │ └── default.htm ├── Images │ └── DuiEngineWizard.gif ├── Scripts │ └── 2052 │ │ └── duiengine.duidir └── Templates │ └── 2052 │ ├── MainDlg.cpp │ ├── MainDlg.h │ ├── ReadMe.txt │ ├── Templates.inf │ ├── UIHander.cpp │ ├── UIHander.h │ ├── dui-demo.cpp │ ├── dui-demo.rc │ ├── duires │ ├── dui-demo.ico │ ├── name2id.xml │ ├── winres.h │ └── winres.rc2 │ ├── resource.h │ ├── skin │ ├── image │ │ ├── btn_sys_close.png │ │ ├── btn_wnd_checkbox.png │ │ ├── btn_wnd_radio.png │ │ ├── check.png │ │ ├── dlg_bg_frame.png │ │ ├── focus_checkbox.png │ │ ├── focus_radio.png │ │ ├── img_edit_border.png │ │ └── scrollbar.bmp │ ├── index.xml │ └── xml │ │ ├── dlg_main.xml │ │ ├── dlg_msgbox.xml │ │ └── init.xml │ ├── stdafx.cpp │ └── stdafx.h ├── scripts ├── vs2008 │ └── default.js └── vs2012 │ └── default.js ├── vs-entry ├── 2005 │ ├── DuiEngineWizard.ico │ ├── DuiEngineWizard.vsdir │ └── DuiEngineWizard.vsz ├── 2008 │ ├── DuiEngineWizard.ico │ ├── DuiEngineWizard.vsdir │ └── DuiEngineWizard.vsz ├── 2010 │ ├── DuiEngineWizard.ico │ ├── DuiEngineWizard.vsdir │ └── DuiEngineWizard.vsz ├── 2012 │ ├── DuiEngineWizard.ico │ ├── DuiEngineWizard.vsdir │ └── DuiEngineWizard.vsz └── 2013 │ ├── DuiEngineWizard.ico │ ├── DuiEngineWizard.vsdir │ └── DuiEngineWizard.vsz ├── vslist.ini └── wizard.setup.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/.gitignore -------------------------------------------------------------------------------- /doc/DUIENGINE坐标系统.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/doc/DUIENGINE坐标系统.txt -------------------------------------------------------------------------------- /doc/DUI引擎属性文档.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/doc/DUI引擎属性文档.docx -------------------------------------------------------------------------------- /doc/Duiengine2.0 移植说明.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/doc/Duiengine2.0 移植说明.docx -------------------------------------------------------------------------------- /doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/doc/logo.png -------------------------------------------------------------------------------- /doc/从Bkwin到DUIEngine快速入门[ 网友'一言'友情提供].docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/doc/从Bkwin到DUIEngine快速入门[ 网友'一言'友情提供].docx -------------------------------------------------------------------------------- /doc/使用说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/doc/使用说明.txt -------------------------------------------------------------------------------- /doc/新手必读.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/doc/新手必读.txt -------------------------------------------------------------------------------- /doc/更新历史.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/doc/更新历史.txt -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/.gitignore -------------------------------------------------------------------------------- /src/DUIEngine/DUIEngine.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/DUIEngine/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/ReadMe.txt -------------------------------------------------------------------------------- /src/DUIEngine/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/dllmain.cpp -------------------------------------------------------------------------------- /src/DUIEngine/include/Accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/Accelerator.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiAttrCrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiAttrCrack.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiCalendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiCalendar.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiComboBox.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiDef.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiDropDown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiDropDown.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiHeaderCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiHeaderCtrl.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiHotKeyCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiHotKeyCtrl.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiListCtrl.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiMenu.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiMessageBox.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiRichEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiRichEdit.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiSkinBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiSkinBase.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiSplitWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiSplitWnd.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiTreeCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiTreeCtrl.h -------------------------------------------------------------------------------- /src/DUIEngine/include/DuiWndFactoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/DuiWndFactoryManager.h -------------------------------------------------------------------------------- /src/DUIEngine/include/MenuWndHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/MenuWndHook.h -------------------------------------------------------------------------------- /src/DUIEngine/include/Name2ID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/Name2ID.h -------------------------------------------------------------------------------- /src/DUIEngine/include/SimpleWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/SimpleWnd.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duiItempanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duiItempanel.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duihostwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duihostwnd.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duilistbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duilistbox.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duilistboxex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duilistboxex.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duimsgcracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duimsgcracker.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duiobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duiobject.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duiresproviderbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duiresproviderbase.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duiskin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duiskin.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duitreebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duitreebox.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duiwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duiwnd.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duiwndcmnctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duiwndcmnctrl.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duiwnddlgfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duiwnddlgfile.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duiwndnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duiwndnotify.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duiwndpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duiwndpanel.h -------------------------------------------------------------------------------- /src/DUIEngine/include/duiwndstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/duiwndstyle.h -------------------------------------------------------------------------------- /src/DUIEngine/include/gdialpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/gdialpha.h -------------------------------------------------------------------------------- /src/DUIEngine/include/mybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/mybuffer.h -------------------------------------------------------------------------------- /src/DUIEngine/include/stree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/include/stree.hpp -------------------------------------------------------------------------------- /src/DUIEngine/src/Accelerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/Accelerator.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiActiveX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiActiveX.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiCSS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiCSS.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiCalendar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiCalendar.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiComboBox.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiDropDown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiDropDown.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiHeaderCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiHeaderCtrl.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiListCtrl.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiMenu.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiMessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiMessageBox.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiRichEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiRichEdit.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiSkinBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiSkinBase.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiSliderBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiSliderBar.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiSplitWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiSplitWnd.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiTipCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiTipCtrl.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiTreeCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiTreeCtrl.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/DuiWndFactoryManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/DuiWndFactoryManager.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/MenuWndHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/MenuWndHook.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/SimpleWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/SimpleWnd.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duiItempanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duiItempanel.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duifontpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duifontpool.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duiframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duiframe.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duihostwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duihostwnd.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duiimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duiimage.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duiimgpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duiimgpool.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duilistbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duilistbox.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duilistboxex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duilistboxex.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duirealwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duirealwnd.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duiscrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duiscrollbar.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duiskin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duiskin.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duistd.cpp: -------------------------------------------------------------------------------- 1 | #include "duistd.h" 2 | 3 | -------------------------------------------------------------------------------- /src/DUIEngine/src/duitreebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duitreebox.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duiwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duiwnd.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duiwndcmnctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duiwndcmnctrl.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/duiwndpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/duiwndpanel.cpp -------------------------------------------------------------------------------- /src/DUIEngine/src/gdialpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/DUIEngine/src/gdialpha.cpp -------------------------------------------------------------------------------- /src/addons/luaScript/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/addons/luaScript/CMakeLists.txt -------------------------------------------------------------------------------- /src/addons/luaScript/lua-5.1/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/addons/luaScript/lua-5.1/dllmain.c -------------------------------------------------------------------------------- /src/addons/luaScript/lua-5.1/lua.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/addons/luaScript/lua-5.1/lua.vcproj -------------------------------------------------------------------------------- /src/addons/luaScript/lua-5.1/lua.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/addons/luaScript/lua-5.1/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/addons/luaScript/lua-5.1/stdafx.cpp -------------------------------------------------------------------------------- /src/addons/luaScript/luaScriptModule/luaScriptModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/addons/luaScript/luaScriptModule/luaScriptModule.cpp -------------------------------------------------------------------------------- /src/addons/luaScript/luaScriptModule/luaScriptModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/addons/luaScript/luaScriptModule/luaScriptModule.h -------------------------------------------------------------------------------- /src/addons/luaScript/luaScriptModule/lua_tinker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/addons/luaScript/luaScriptModule/lua_tinker.h -------------------------------------------------------------------------------- /src/addons/luaScript/luaScriptModule/require.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define DLL_DUI 4 | typedef char * _cstring; 5 | typedef void * _userdata; 6 | #define __op_run operator() -------------------------------------------------------------------------------- /src/addons/luaScript/luaScriptModule/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/addons/luaScript/luaScriptModule/stdafx.cpp -------------------------------------------------------------------------------- /src/addons/luaScript/luaScriptModule/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/addons/luaScript/luaScriptModule/stdafx.h -------------------------------------------------------------------------------- /src/addons/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/addons/zlib/ChangeLog -------------------------------------------------------------------------------- /src/addons/zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- 1 | 2 | To build zlib using the Microsoft Visual C++ environment, 3 | use the appropriate project from the projects/ directory. 4 | -------------------------------------------------------------------------------- /src/addons/zlib/zlib.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/duixengine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/CMakeLists.txt -------------------------------------------------------------------------------- /src/duixengine/DUIEngine.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/duixengine/ReadMe.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/ReadMe.markdown -------------------------------------------------------------------------------- /src/duixengine/include/dui/Accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/Accelerator.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiAttrCrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiAttrCrack.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiCalendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiCalendar.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiComboBox.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiDef.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiDropDown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiDropDown.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiHeaderCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiHeaderCtrl.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiHotKeyCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiHotKeyCtrl.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiListCtrl.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiMenu.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiMessageBox.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiRichEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiRichEdit.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiSkinBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiSkinBase.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiSplitWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiSplitWnd.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiTreeCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiTreeCtrl.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/DuiWndFactoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/DuiWndFactoryManager.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/MenuWndHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/MenuWndHook.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/Name2ID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/Name2ID.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/SimpleWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/SimpleWnd.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duiItempanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duiItempanel.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duihostwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duihostwnd.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duilistbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duilistbox.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duilistboxex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duilistboxex.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duimsgcracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duimsgcracker.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duiobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duiobject.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duiresproviderbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duiresproviderbase.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duiskin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duiskin.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duitreebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duitreebox.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duiwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duiwnd.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duiwndcmnctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duiwndcmnctrl.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duiwnddlgfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duiwnddlgfile.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duiwndnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duiwndnotify.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duiwndpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duiwndpanel.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/duiwndstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/duiwndstyle.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/gdialpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/gdialpha.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/mybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/mybuffer.h -------------------------------------------------------------------------------- /src/duixengine/include/dui/stree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/include/dui/stree.h -------------------------------------------------------------------------------- /src/duixengine/src/Accelerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/Accelerator.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiActiveX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiActiveX.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiCSS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiCSS.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiCalendar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiCalendar.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiComboBox.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiDropDown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiDropDown.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiHeaderCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiHeaderCtrl.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiListCtrl.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiMenu.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiMessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiMessageBox.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiRichEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiRichEdit.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiSkinBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiSkinBase.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiSliderBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiSliderBar.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiSplitWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiSplitWnd.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiTipCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiTipCtrl.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiTreeCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiTreeCtrl.cpp -------------------------------------------------------------------------------- /src/duixengine/src/DuiWndFactoryManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/DuiWndFactoryManager.cpp -------------------------------------------------------------------------------- /src/duixengine/src/MenuWndHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/MenuWndHook.cpp -------------------------------------------------------------------------------- /src/duixengine/src/SimpleWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/SimpleWnd.cpp -------------------------------------------------------------------------------- /src/duixengine/src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/dllmain.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duiItempanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duiItempanel.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duifontpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duifontpool.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duiframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duiframe.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duihostwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duihostwnd.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duiimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duiimage.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duiimgpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duiimgpool.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duilistbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duilistbox.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duilistboxex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duilistboxex.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duirealwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duirealwnd.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duiscrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duiscrollbar.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duiskin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duiskin.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duistd.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /src/duixengine/src/duitreebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duitreebox.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duiwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duiwnd.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duiwndcmnctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duiwndcmnctrl.cpp -------------------------------------------------------------------------------- /src/duixengine/src/duiwndpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/duiwndpanel.cpp -------------------------------------------------------------------------------- /src/duixengine/src/gdialpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/duixengine/src/gdialpha.cpp -------------------------------------------------------------------------------- /src/examples/3d_demo/3ddemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/3ddemo.cpp -------------------------------------------------------------------------------- /src/examples/3d_demo/3ddemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/3ddemo.rc -------------------------------------------------------------------------------- /src/examples/3d_demo/3ddemo.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/examples/3d_demo/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/ReadMe.txt -------------------------------------------------------------------------------- /src/examples/3d_demo/UIHander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/UIHander.cpp -------------------------------------------------------------------------------- /src/examples/3d_demo/duires/3ddemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/duires/3ddemo.ico -------------------------------------------------------------------------------- /src/examples/3d_demo/duires/winres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/duires/winres.h -------------------------------------------------------------------------------- /src/examples/3d_demo/duires/winres.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/duires/winres.rc2 -------------------------------------------------------------------------------- /src/examples/3d_demo/skin/image/btn_sys_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/skin/image/btn_sys_close.png -------------------------------------------------------------------------------- /src/examples/3d_demo/skin/image/btn_wnd_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/skin/image/btn_wnd_checkbox.png -------------------------------------------------------------------------------- /src/examples/3d_demo/skin/image/btn_wnd_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/skin/image/btn_wnd_radio.png -------------------------------------------------------------------------------- /src/examples/3d_demo/skin/image/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/skin/image/check.png -------------------------------------------------------------------------------- /src/examples/3d_demo/skin/image/dlg_bg_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/skin/image/dlg_bg_frame.png -------------------------------------------------------------------------------- /src/examples/3d_demo/skin/image/focus_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/skin/image/focus_checkbox.png -------------------------------------------------------------------------------- /src/examples/3d_demo/skin/image/focus_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/skin/image/focus_radio.png -------------------------------------------------------------------------------- /src/examples/3d_demo/skin/image/mini_progress_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/skin/image/mini_progress_bar.png -------------------------------------------------------------------------------- /src/examples/3d_demo/skin/image/mini_progress_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/skin/image/mini_progress_bg.png -------------------------------------------------------------------------------- /src/examples/3d_demo/skin/image/scrollbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/skin/image/scrollbar.bmp -------------------------------------------------------------------------------- /src/examples/3d_demo/skin/image/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/skin/image/slider.png -------------------------------------------------------------------------------- /src/examples/3d_demo/skin/image/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/skin/image/test.png -------------------------------------------------------------------------------- /src/examples/3d_demo/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/3d_demo/stdafx.h -------------------------------------------------------------------------------- /src/examples/ani_demo/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/ReadMe.txt -------------------------------------------------------------------------------- /src/examples/ani_demo/UIHander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/UIHander.cpp -------------------------------------------------------------------------------- /src/examples/ani_demo/anidemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/anidemo.cpp -------------------------------------------------------------------------------- /src/examples/ani_demo/anidemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/anidemo.rc -------------------------------------------------------------------------------- /src/examples/ani_demo/anidemo.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/examples/ani_demo/bindemo/animate_demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/bindemo/animate_demo.exe -------------------------------------------------------------------------------- /src/examples/ani_demo/duires/anidemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/duires/anidemo.ico -------------------------------------------------------------------------------- /src/examples/ani_demo/duires/res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/duires/res.h -------------------------------------------------------------------------------- /src/examples/ani_demo/duires/winres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/duires/winres.h -------------------------------------------------------------------------------- /src/examples/ani_demo/duires/winres.h.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/duires/winres.h.ts -------------------------------------------------------------------------------- /src/examples/ani_demo/duires/winres.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/duires/winres.rc2 -------------------------------------------------------------------------------- /src/examples/ani_demo/duires/winres.rc2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/duires/winres.rc2.ts -------------------------------------------------------------------------------- /src/examples/ani_demo/skin/image/btn_sys_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/skin/image/btn_sys_close.png -------------------------------------------------------------------------------- /src/examples/ani_demo/skin/image/btn_wnd_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/skin/image/btn_wnd_checkbox.png -------------------------------------------------------------------------------- /src/examples/ani_demo/skin/image/btn_wnd_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/skin/image/btn_wnd_radio.png -------------------------------------------------------------------------------- /src/examples/ani_demo/skin/image/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/skin/image/check.png -------------------------------------------------------------------------------- /src/examples/ani_demo/skin/image/dlg_bg_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/skin/image/dlg_bg_frame.png -------------------------------------------------------------------------------- /src/examples/ani_demo/skin/image/focus_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/skin/image/focus_checkbox.png -------------------------------------------------------------------------------- /src/examples/ani_demo/skin/image/focus_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/skin/image/focus_radio.png -------------------------------------------------------------------------------- /src/examples/ani_demo/skin/image/img_busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/skin/image/img_busy.png -------------------------------------------------------------------------------- /src/examples/ani_demo/skin/image/scrollbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/skin/image/scrollbar.bmp -------------------------------------------------------------------------------- /src/examples/ani_demo/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ani_demo/stdafx.h -------------------------------------------------------------------------------- /src/examples/childduiwnd/DuiChild.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class CDuiChild : 4 | public CDuiHostWnd 5 | { 6 | public: 7 | CDuiChild(void); 8 | ~CDuiChild(void); 9 | }; 10 | -------------------------------------------------------------------------------- /src/examples/childduiwnd/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/ReadMe.txt -------------------------------------------------------------------------------- /src/examples/childduiwnd/UIHander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/UIHander.cpp -------------------------------------------------------------------------------- /src/examples/childduiwnd/duichildui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/duichildui.cpp -------------------------------------------------------------------------------- /src/examples/childduiwnd/duichildui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/duichildui.rc -------------------------------------------------------------------------------- /src/examples/childduiwnd/duichildui.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/examples/childduiwnd/duires/duichildui.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/duires/duichildui.ico -------------------------------------------------------------------------------- /src/examples/childduiwnd/duires/winres.h.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/duires/winres.h.ts -------------------------------------------------------------------------------- /src/examples/childduiwnd/duires/winres.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/duires/winres.rc2 -------------------------------------------------------------------------------- /src/examples/childduiwnd/duires/winres.rc2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/duires/winres.rc2.ts -------------------------------------------------------------------------------- /src/examples/childduiwnd/skin/image/btn_sys_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/skin/image/btn_sys_close.png -------------------------------------------------------------------------------- /src/examples/childduiwnd/skin/image/btn_wnd_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/skin/image/btn_wnd_checkbox.png -------------------------------------------------------------------------------- /src/examples/childduiwnd/skin/image/btn_wnd_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/skin/image/btn_wnd_radio.png -------------------------------------------------------------------------------- /src/examples/childduiwnd/skin/image/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/skin/image/check.png -------------------------------------------------------------------------------- /src/examples/childduiwnd/skin/image/dlg_bg_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/skin/image/dlg_bg_frame.png -------------------------------------------------------------------------------- /src/examples/childduiwnd/skin/image/focus_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/skin/image/focus_checkbox.png -------------------------------------------------------------------------------- /src/examples/childduiwnd/skin/image/focus_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/skin/image/focus_radio.png -------------------------------------------------------------------------------- /src/examples/childduiwnd/skin/image/scrollbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/skin/image/scrollbar.bmp -------------------------------------------------------------------------------- /src/examples/childduiwnd/skin/xml/def_string.xml: -------------------------------------------------------------------------------- 1 |  2 | 宋体 3 | 1.0 4 | -------------------------------------------------------------------------------- /src/examples/childduiwnd/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/childduiwnd/stdafx.h -------------------------------------------------------------------------------- /src/examples/dui_demo/DuiDemo.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/examples/dui_demo/DuiSkinGif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/DuiSkinGif.h -------------------------------------------------------------------------------- /src/examples/dui_demo/MainDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/MainDlg.h -------------------------------------------------------------------------------- /src/examples/dui_demo/UIHander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/UIHander.cpp -------------------------------------------------------------------------------- /src/examples/dui_demo/UIHander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/UIHander.h -------------------------------------------------------------------------------- /src/examples/dui_demo/bindemo/Dui-Demo_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/bindemo/Dui-Demo_Release.exe -------------------------------------------------------------------------------- /src/examples/dui_demo/bindemo/def_skin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/bindemo/def_skin.zip -------------------------------------------------------------------------------- /src/examples/dui_demo/duidemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/duidemo.cpp -------------------------------------------------------------------------------- /src/examples/dui_demo/duidemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/duidemo.rc -------------------------------------------------------------------------------- /src/examples/dui_demo/duires/resmode.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/duires/resmode.zip -------------------------------------------------------------------------------- /src/examples/dui_demo/duires/resmode/skins/scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/duires/resmode/skins/scrollbar.png -------------------------------------------------------------------------------- /src/examples/dui_demo/duires/winres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/duires/winres.h -------------------------------------------------------------------------------- /src/examples/dui_demo/duires/winres.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/duires/winres.rc2 -------------------------------------------------------------------------------- /src/examples/dui_demo/lua/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/lua/test.lua -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/TreeCheckBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/TreeCheckBox.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/TreeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/TreeIcon.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/TreeToggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/TreeToggle.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/bk_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/bk_shadow.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/btn_normal_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/btn_normal_yellow.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/btn_sys_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/btn_sys_close.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/btn_sys_maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/btn_sys_maximize.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/btn_sys_minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/btn_sys_minimize.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/btn_sys_restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/btn_sys_restore.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/btn_wnd_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/btn_wnd_checkbox.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/btn_wnd_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/btn_wnd_radio.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/busy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/busy1.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/check.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/dlg_bg_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/dlg_bg_frame.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/dropbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/dropbtn.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/face0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/face0.gif -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/focus_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/focus_checkbox.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/focus_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/focus_radio.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/icon2.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/icon3.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/icons.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/img_dlg_big_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/img_dlg_big_frame.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/img_edit_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/img_edit_border.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/img_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/img_logo.ico -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/img_menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/img_menu_bg.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/main_dlg_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/main_dlg_body.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/menu_split_horz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/menu_split_horz.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/menuborder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/menuborder.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/menuskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/menuskin.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/mini_progress_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/mini_progress_bar.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/mini_progress_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/mini_progress_bg.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/scrollbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/scrollbar.bmp -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/scrollbar.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/scrollbar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/scrollbar2.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/slider.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/solve.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/solve.bmp -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/split_horz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/split_horz.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/split_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/split_vert.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/tab_common.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/tab_common.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/vscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/vscrollbar.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/webbtn_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/webbtn_back.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/webbtn_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/webbtn_forward.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/image/webbtn_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skin/image/webbtn_refresh.png -------------------------------------------------------------------------------- /src/examples/dui_demo/skin/xml/def_string.xml: -------------------------------------------------------------------------------- 1 |  2 | 宋体 3 | 1.0 4 | -------------------------------------------------------------------------------- /src/examples/dui_demo/skinole/ImageOle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skinole/ImageOle.cpp -------------------------------------------------------------------------------- /src/examples/dui_demo/skinole/ImageOle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/skinole/ImageOle.h -------------------------------------------------------------------------------- /src/examples/dui_demo/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/stdafx.h -------------------------------------------------------------------------------- /src/examples/dui_demo/zipskin/DuiResProviderZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/zipskin/DuiResProviderZip.cpp -------------------------------------------------------------------------------- /src/examples/dui_demo/zipskin/ZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/zipskin/ZipArchive.h -------------------------------------------------------------------------------- /src/examples/dui_demo/zipskin/zipArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/dui_demo/zipskin/zipArchive.cpp -------------------------------------------------------------------------------- /src/examples/duie-ie/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/ReadMe.txt -------------------------------------------------------------------------------- /src/examples/duie-ie/UIHander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/UIHander.cpp -------------------------------------------------------------------------------- /src/examples/duie-ie/duieie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/duieie.cpp -------------------------------------------------------------------------------- /src/examples/duie-ie/duieie.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/duieie.rc -------------------------------------------------------------------------------- /src/examples/duie-ie/duieie.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/examples/duie-ie/duires/duieie.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/duires/duieie.ico -------------------------------------------------------------------------------- /src/examples/duie-ie/duires/winres.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/duires/winres.rc2 -------------------------------------------------------------------------------- /src/examples/duie-ie/skin/image/btn_sys_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/skin/image/btn_sys_close.png -------------------------------------------------------------------------------- /src/examples/duie-ie/skin/image/btn_wnd_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/skin/image/btn_wnd_checkbox.png -------------------------------------------------------------------------------- /src/examples/duie-ie/skin/image/btn_wnd_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/skin/image/btn_wnd_radio.png -------------------------------------------------------------------------------- /src/examples/duie-ie/skin/image/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/skin/image/check.png -------------------------------------------------------------------------------- /src/examples/duie-ie/skin/image/dlg_bg_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/skin/image/dlg_bg_frame.png -------------------------------------------------------------------------------- /src/examples/duie-ie/skin/image/focus_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/skin/image/focus_checkbox.png -------------------------------------------------------------------------------- /src/examples/duie-ie/skin/image/focus_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/skin/image/focus_radio.png -------------------------------------------------------------------------------- /src/examples/duie-ie/skin/image/img_edit_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/skin/image/img_edit_border.png -------------------------------------------------------------------------------- /src/examples/duie-ie/skin/image/scrollbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/skin/image/scrollbar.bmp -------------------------------------------------------------------------------- /src/examples/duie-ie/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duie-ie/stdafx.h -------------------------------------------------------------------------------- /src/examples/duiskin/src/DuiDemo.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/examples/duiskin/src/DuiSkinGif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/DuiSkinGif.h -------------------------------------------------------------------------------- /src/examples/duiskin/src/MainDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/MainDlg.h -------------------------------------------------------------------------------- /src/examples/duiskin/src/UIHander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/UIHander.cpp -------------------------------------------------------------------------------- /src/examples/duiskin/src/UIHander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/UIHander.h -------------------------------------------------------------------------------- /src/examples/duiskin/src/duidemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/duidemo.cpp -------------------------------------------------------------------------------- /src/examples/duiskin/src/duidemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/duidemo.rc -------------------------------------------------------------------------------- /src/examples/duiskin/src/duires/duiskin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/duires/duiskin.zip -------------------------------------------------------------------------------- /src/examples/duiskin/src/duires/resmode.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/duires/resmode.zip -------------------------------------------------------------------------------- /src/examples/duiskin/src/duires/winres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/duires/winres.h -------------------------------------------------------------------------------- /src/examples/duiskin/src/duires/winres.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/duires/winres.rc2 -------------------------------------------------------------------------------- /src/examples/duiskin/src/flash2524.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/flash2524.swf -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/app_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/app_logo.ico -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/bmpmask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/bmpmask.bmp -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/button_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/button_checkbox.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/button_checkbox2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/button_checkbox2.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/button_radiobox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/button_radiobox.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/calendar_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/calendar_button.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/combo_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/combo_dropdown.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/combo_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/combo_icons.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/demo_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/demo_gif.gif -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/dialog_bg_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/dialog_bg_frame.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/dialog_big_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/dialog_big_frame.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/dialog_main_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/dialog_main_body.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/editbox_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/editbox_border.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/icons_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/icons_large.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/icons_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/icons_small.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/listctrl_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/listctrl_header.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/menu_bg.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/menu_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/menu_border.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/menu_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/menu_check.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/menu_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/menu_icons.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/menu_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/menu_item.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/menu_seperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/menu_seperator.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/progressbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/progressbar_bg.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/progressbar_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/progressbar_fg.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/scrollbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/scrollbar.bmp -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/scrollbar.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/scrollbar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/scrollbar2.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/seperator_horz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/seperator_horz.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/seperator_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/seperator_vert.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/slider_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/slider_bg.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/slider_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/slider_fg.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/slider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/slider_thumb.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/sysbutton_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/sysbutton_close.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/tab_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/tab_page.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/tree_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/tree_checkbox.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/tree_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/tree_icons.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/tree_toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/tree_toggle.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/webbtn_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/webbtn_back.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/webbtn_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/webbtn_forward.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/image/webbtn_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skin/image/webbtn_refresh.png -------------------------------------------------------------------------------- /src/examples/duiskin/src/skin/xml/def_string.xml: -------------------------------------------------------------------------------- 1 |  2 | 宋体 3 | 1.0 4 | -------------------------------------------------------------------------------- /src/examples/duiskin/src/skinole/ImageOle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skinole/ImageOle.cpp -------------------------------------------------------------------------------- /src/examples/duiskin/src/skinole/ImageOle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/skinole/ImageOle.h -------------------------------------------------------------------------------- /src/examples/duiskin/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/stdafx.h -------------------------------------------------------------------------------- /src/examples/duiskin/src/zipskin/DuiResProviderZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/zipskin/DuiResProviderZip.cpp -------------------------------------------------------------------------------- /src/examples/duiskin/src/zipskin/ZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/zipskin/ZipArchive.h -------------------------------------------------------------------------------- /src/examples/duiskin/src/zipskin/zipArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/duiskin/src/zipskin/zipArchive.cpp -------------------------------------------------------------------------------- /src/examples/gifplayer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/ReadMe.txt -------------------------------------------------------------------------------- /src/examples/gifplayer/UIHander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/UIHander.cpp -------------------------------------------------------------------------------- /src/examples/gifplayer/duires/gifplayer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/duires/gifplayer.ico -------------------------------------------------------------------------------- /src/examples/gifplayer/duires/winres.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/duires/winres.rc2 -------------------------------------------------------------------------------- /src/examples/gifplayer/gif/DuiSkinGif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/gif/DuiSkinGif.h -------------------------------------------------------------------------------- /src/examples/gifplayer/gifplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/gifplayer.cpp -------------------------------------------------------------------------------- /src/examples/gifplayer/gifplayer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/gifplayer.rc -------------------------------------------------------------------------------- /src/examples/gifplayer/gifplayer.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/examples/gifplayer/skin/image/012l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/skin/image/012l.gif -------------------------------------------------------------------------------- /src/examples/gifplayer/skin/image/06f.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/skin/image/06f.gif -------------------------------------------------------------------------------- /src/examples/gifplayer/skin/image/btn_sys_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/skin/image/btn_sys_close.png -------------------------------------------------------------------------------- /src/examples/gifplayer/skin/image/btn_wnd_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/skin/image/btn_wnd_checkbox.png -------------------------------------------------------------------------------- /src/examples/gifplayer/skin/image/btn_wnd_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/skin/image/btn_wnd_radio.png -------------------------------------------------------------------------------- /src/examples/gifplayer/skin/image/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/skin/image/check.png -------------------------------------------------------------------------------- /src/examples/gifplayer/skin/image/dlg_bg_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/skin/image/dlg_bg_frame.png -------------------------------------------------------------------------------- /src/examples/gifplayer/skin/image/focus_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/skin/image/focus_checkbox.png -------------------------------------------------------------------------------- /src/examples/gifplayer/skin/image/focus_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/skin/image/focus_radio.png -------------------------------------------------------------------------------- /src/examples/gifplayer/skin/image/scrollbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/skin/image/scrollbar.bmp -------------------------------------------------------------------------------- /src/examples/gifplayer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/gifplayer/stdafx.h -------------------------------------------------------------------------------- /src/examples/ie-demo2/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/ReadMe.txt -------------------------------------------------------------------------------- /src/examples/ie-demo2/UIHander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/UIHander.cpp -------------------------------------------------------------------------------- /src/examples/ie-demo2/duieie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/duieie.cpp -------------------------------------------------------------------------------- /src/examples/ie-demo2/duieie.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/duieie.rc -------------------------------------------------------------------------------- /src/examples/ie-demo2/duieie.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/examples/ie-demo2/duires/duieie.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/duires/duieie.ico -------------------------------------------------------------------------------- /src/examples/ie-demo2/duires/winres.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/duires/winres.rc2 -------------------------------------------------------------------------------- /src/examples/ie-demo2/skin/image/btn_sys_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/skin/image/btn_sys_close.png -------------------------------------------------------------------------------- /src/examples/ie-demo2/skin/image/btn_wnd_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/skin/image/btn_wnd_checkbox.png -------------------------------------------------------------------------------- /src/examples/ie-demo2/skin/image/btn_wnd_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/skin/image/btn_wnd_radio.png -------------------------------------------------------------------------------- /src/examples/ie-demo2/skin/image/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/skin/image/check.png -------------------------------------------------------------------------------- /src/examples/ie-demo2/skin/image/dlg_bg_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/skin/image/dlg_bg_frame.png -------------------------------------------------------------------------------- /src/examples/ie-demo2/skin/image/focus_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/skin/image/focus_checkbox.png -------------------------------------------------------------------------------- /src/examples/ie-demo2/skin/image/focus_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/skin/image/focus_radio.png -------------------------------------------------------------------------------- /src/examples/ie-demo2/skin/image/img_edit_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/skin/image/img_edit_border.png -------------------------------------------------------------------------------- /src/examples/ie-demo2/skin/image/scrollbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/skin/image/scrollbar.bmp -------------------------------------------------------------------------------- /src/examples/ie-demo2/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/ie-demo2/stdafx.h -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/IECtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/IECtrl.h -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/ReadMe.txt -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/UIHander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/UIHander.cpp -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/duires/iectrlwtl.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/duires/iectrlwtl.ico -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/duires/winres.h.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/duires/winres.h.ts -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/duires/winres.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/duires/winres.rc2 -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/duires/winres.rc2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/duires/winres.rc2.ts -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/iectrlwtl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/iectrlwtl.cpp -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/iectrlwtl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/iectrlwtl.rc -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/iectrlwtl.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/skin/image/btn_sys_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/skin/image/btn_sys_close.png -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/skin/image/btn_wnd_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/skin/image/btn_wnd_checkbox.png -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/skin/image/btn_wnd_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/skin/image/btn_wnd_radio.png -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/skin/image/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/skin/image/check.png -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/skin/image/dlg_bg_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/skin/image/dlg_bg_frame.png -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/skin/image/focus_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/skin/image/focus_checkbox.png -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/skin/image/focus_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/skin/image/focus_radio.png -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/skin/image/scrollbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/skin/image/scrollbar.bmp -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/skin/image/tab_common.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/skin/image/tab_common.png -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/skin/xml/def_string.xml: -------------------------------------------------------------------------------- 1 |  2 | 宋体 3 | 1.0 4 | -------------------------------------------------------------------------------- /src/examples/iectrl.wtl/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/iectrl.wtl/stdafx.h -------------------------------------------------------------------------------- /src/examples/image3d/3dTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/image3d/3dTransform.h -------------------------------------------------------------------------------- /src/examples/image3d/3dlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/image3d/3dlib.h -------------------------------------------------------------------------------- /src/examples/image3d/3dtransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/image3d/3dtransform.cpp -------------------------------------------------------------------------------- /src/examples/image3d/PerspectiveTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/image3d/PerspectiveTransform.h -------------------------------------------------------------------------------- /src/examples/image3d/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/image3d/ReadMe.txt -------------------------------------------------------------------------------- /src/examples/image3d/image3d.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/examples/mfc.demo/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/ReadMe.txt -------------------------------------------------------------------------------- /src/examples/mfc.demo/UIHander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/UIHander.cpp -------------------------------------------------------------------------------- /src/examples/mfc.demo/duires/Project1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/duires/Project1.ico -------------------------------------------------------------------------------- /src/examples/mfc.demo/duires/name2id.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/examples/mfc.demo/duires/winres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/duires/winres.h -------------------------------------------------------------------------------- /src/examples/mfc.demo/duires/winres.h.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/duires/winres.h.ts -------------------------------------------------------------------------------- /src/examples/mfc.demo/duires/winres.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/duires/winres.rc2 -------------------------------------------------------------------------------- /src/examples/mfc.demo/duires/winres.rc2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/duires/winres.rc2.ts -------------------------------------------------------------------------------- /src/examples/mfc.demo/mfcdemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/mfcdemo.cpp -------------------------------------------------------------------------------- /src/examples/mfc.demo/mfcdemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/mfcdemo.h -------------------------------------------------------------------------------- /src/examples/mfc.demo/mfcdemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/mfcdemo.rc -------------------------------------------------------------------------------- /src/examples/mfc.demo/mfcdemo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/mfcdemo.vcproj -------------------------------------------------------------------------------- /src/examples/mfc.demo/mfcdemo.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/examples/mfc.demo/mfcdemoDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/mfcdemoDlg.cpp -------------------------------------------------------------------------------- /src/examples/mfc.demo/mfcdemoDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/mfcdemoDlg.h -------------------------------------------------------------------------------- /src/examples/mfc.demo/res/mfcdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/res/mfcdemo.ico -------------------------------------------------------------------------------- /src/examples/mfc.demo/skin/image/btn_sys_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/skin/image/btn_sys_close.png -------------------------------------------------------------------------------- /src/examples/mfc.demo/skin/image/btn_wnd_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/skin/image/btn_wnd_checkbox.png -------------------------------------------------------------------------------- /src/examples/mfc.demo/skin/image/btn_wnd_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/skin/image/btn_wnd_radio.png -------------------------------------------------------------------------------- /src/examples/mfc.demo/skin/image/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/skin/image/check.png -------------------------------------------------------------------------------- /src/examples/mfc.demo/skin/image/dlg_bg_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/skin/image/dlg_bg_frame.png -------------------------------------------------------------------------------- /src/examples/mfc.demo/skin/image/focus_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/skin/image/focus_checkbox.png -------------------------------------------------------------------------------- /src/examples/mfc.demo/skin/image/focus_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/skin/image/focus_radio.png -------------------------------------------------------------------------------- /src/examples/mfc.demo/skin/image/scrollbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/skin/image/scrollbar.bmp -------------------------------------------------------------------------------- /src/examples/mfc.demo/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/stdafx.cpp -------------------------------------------------------------------------------- /src/examples/mfc.demo/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/stdafx.h -------------------------------------------------------------------------------- /src/examples/mfc.demo/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/mfc.demo/targetver.h -------------------------------------------------------------------------------- /src/examples/qq_demo/LoginDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/LoginDlg.h -------------------------------------------------------------------------------- /src/examples/qq_demo/QQDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/QQDemo.cpp -------------------------------------------------------------------------------- /src/examples/qq_demo/QQDemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/QQDemo.rc -------------------------------------------------------------------------------- /src/examples/qq_demo/QQDemo.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/examples/qq_demo/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/ReadMe.txt -------------------------------------------------------------------------------- /src/examples/qq_demo/bindemo/QQDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/bindemo/QQDemo.exe -------------------------------------------------------------------------------- /src/examples/qq_demo/bindemo/qqres/login/afternoon.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/bindemo/qqres/login/afternoon.swf -------------------------------------------------------------------------------- /src/examples/qq_demo/bindemo/qqres/login/morning.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/bindemo/qqres/login/morning.swf -------------------------------------------------------------------------------- /src/examples/qq_demo/bindemo/qqres/login/night.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/bindemo/qqres/login/night.swf -------------------------------------------------------------------------------- /src/examples/qq_demo/bindemo/qqres/login/noon.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/bindemo/qqres/login/noon.swf -------------------------------------------------------------------------------- /src/examples/qq_demo/duibuttonex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/duibuttonex.h -------------------------------------------------------------------------------- /src/examples/qq_demo/duiembedbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/duiembedbutton.cpp -------------------------------------------------------------------------------- /src/examples/qq_demo/duiembededit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/duiembededit.cpp -------------------------------------------------------------------------------- /src/examples/qq_demo/duires/QQDemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/duires/QQDemo.ico -------------------------------------------------------------------------------- /src/examples/qq_demo/duires/winres.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/duires/winres.rc2 -------------------------------------------------------------------------------- /src/examples/qq_demo/duiturn3dview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/duiturn3dview.cpp -------------------------------------------------------------------------------- /src/examples/qq_demo/duiturn3dview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/duiturn3dview.h -------------------------------------------------------------------------------- /src/examples/qq_demo/image3d/3dTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/image3d/3dTransform.h -------------------------------------------------------------------------------- /src/examples/qq_demo/image3d/3dlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/image3d/3dlib.h -------------------------------------------------------------------------------- /src/examples/qq_demo/image3d/3dtransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/image3d/3dtransform.cpp -------------------------------------------------------------------------------- /src/examples/qq_demo/image3d/PerspectiveTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/image3d/PerspectiveTransform.h -------------------------------------------------------------------------------- /src/examples/qq_demo/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/resource.h -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/00680[26x26x8BPP].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/00680[26x26x8BPP].png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/00692[31x22x8BPP].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/00692[31x22x8BPP].png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/00693[58x22x8BPP].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/00693[58x22x8BPP].png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/BT_KEY_BOARD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/BT_KEY_BOARD.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/LOGIN_LIST_CLOSE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/LOGIN_LIST_CLOSE.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/allbtn_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/allbtn_down.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/allbtn_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/allbtn_nor.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/allbtn_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/allbtn_over.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/border.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/btn_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/btn_dropdown.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/btn_dropdown_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/btn_dropdown_set.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/btn_get_pswd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/btn_get_pswd.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/btn_login_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/btn_login_set.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/btn_register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/btn_register.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/btn_sys_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/btn_sys_close.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/btn_sys_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/btn_sys_min.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/btn_wnd_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/btn_wnd_checkbox.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/btn_wnd_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/btn_wnd_radio.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/check.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/checkbox_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/checkbox_icon.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/dlg_bg_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/dlg_bg_frame.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/focus_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/focus_checkbox.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/focus_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/focus_radio.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/gray_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/gray_border.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/head_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/head_bkg.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/header.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/icons.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/img_edit_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/img_edit_border.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/img_edit_border2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/img_edit_border2.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/img_edit_border_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/img_edit_border_set.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/imoffline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/imoffline.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/keyboard1.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/keyboard2.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/login_2code_button.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/login_2code_button.PNG -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/login_body1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/login_body1.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/login_btn_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/login_btn_down.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/login_btn_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/login_btn_hover.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/login_btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/login_btn_normal.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/login_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/login_button.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/login_button2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/login_button2.PNG -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/login_foot_bk.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/login_foot_bk.PNG -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/login_set_bk1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/login_set_bk1.PNG -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/login_set_bk2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/login_set_bk2.PNG -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/login_set_title.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/login_set_title.PNG -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/menu.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/menu_bkg_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/menu_bkg_board.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/menu_split_horz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/menu_split_horz.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/menuborder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/menuborder.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/menuskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/menuskin.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/scrollbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/scrollbar.bmp -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/set_btn_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/set_btn_down.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/set_btn_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/set_btn_hover.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/set_btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/set_btn_normal.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/small_head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/small_head.jpg -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/status_busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/status_busy.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/status_invisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/status_invisible.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/status_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/status_leave.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/status_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/status_online.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/status_qme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/status_qme.png -------------------------------------------------------------------------------- /src/examples/qq_demo/skin/image/status_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/skin/image/status_stop.png -------------------------------------------------------------------------------- /src/examples/qq_demo/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/qq_demo/stdafx.h -------------------------------------------------------------------------------- /src/examples/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/examples/说明.txt -------------------------------------------------------------------------------- /src/extra/controls.extend/include/gif/DuiSkinGif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/extra/controls.extend/include/gif/DuiSkinGif.h -------------------------------------------------------------------------------- /src/extra/controls.extend/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/extra/controls.extend/readme.txt -------------------------------------------------------------------------------- /src/installation/WTL81/AppWiz/Files/Images/WTLApp70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/AppWiz/Files/Images/WTLApp70.gif -------------------------------------------------------------------------------- /src/installation/WTL81/AppWiz/Files/Templates/1033/root.h: -------------------------------------------------------------------------------- 1 | // [!output PROJECT_NAME].h 2 | -------------------------------------------------------------------------------- /src/installation/WTL81/AppWiz/Files/WTLAppWiz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/AppWiz/Files/WTLAppWiz.ico -------------------------------------------------------------------------------- /src/installation/WTL81/AppWiz/Files/WTLAppWiz.vsdir: -------------------------------------------------------------------------------- 1 | WTLAppWiz.vsz| |ATL/WTL Application Wizard|1|An application that uses the Windows Template Library.| |6777|4096|#1154 2 | -------------------------------------------------------------------------------- /src/installation/WTL81/AppWizCE/Files/Templates/1033/root.h: -------------------------------------------------------------------------------- 1 | // [!output PROJECT_NAME].h 2 | -------------------------------------------------------------------------------- /src/installation/WTL81/AppWizCE/Files/WTLAppWizCE.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/AppWizCE/Files/WTLAppWizCE.ico -------------------------------------------------------------------------------- /src/installation/WTL81/AppWizCE/Files/WTLAppWizCE.vsdir: -------------------------------------------------------------------------------- 1 | WTLAppWizCE.vsz| |ATL/WTL AppWizard for Windows CE|1|An application that uses the Windows Template Library.| |6777|4096|#1154 2 | -------------------------------------------------------------------------------- /src/installation/WTL81/AppWizMobile/Files/WTLMobile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/AppWizMobile/Files/WTLMobile.ico -------------------------------------------------------------------------------- /src/installation/WTL81/AppWizMobile/Files/WTLMobile.vsdir: -------------------------------------------------------------------------------- 1 | WTLMobile.vsz| |WTL Mobile Application Wizard|1|A Mobile device WTL application| |6777|4096|#1154 2 | -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/Aero/res/Aero.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/Aero/res/Aero.ico -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/Aero/res/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/Aero/res/toolbar.bmp -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/Alpha/Alpha.h: -------------------------------------------------------------------------------- 1 | // Alpha.h 2 | -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/Alpha/res/Alpha.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/Alpha/res/Alpha.ico -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/Alpha/res/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/Alpha/res/toolbar.bmp -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/Alpha/res/toolbar_old.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/Alpha/res/toolbar_old.bmp -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/BmpView/res/BmpView.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/BmpView/res/BmpView.ico -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/BmpView/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/BmpView/res/Toolbar.bmp -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/BmpView/res/ToolbarCE.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/BmpView/res/ToolbarCE.bmp -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/GuidGen/res/GuidGen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/GuidGen/res/GuidGen.ico -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/ImageView/res/BmpView.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/ImageView/res/BmpView.ico -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/ImageView/res/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/ImageView/res/bitmap1.bmp -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/ImageView/res/bitmap2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/ImageView/res/bitmap2.bmp -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MDIDocVw/HELLO.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/MDIDocVw/HELLO.ICO -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MDIDocVw/MDI.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/MDIDocVw/MDI.ICO -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MDIDocVw/res/HelloDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/MDIDocVw/res/HelloDoc.ico -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MDIDocVw/res/MDI.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/MDIDocVw/res/MDI.ICO -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MDIDocVw/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/MDIDocVw/res/Toolbar.bmp -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MDIDocVw/res/idr_boun.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/MDIDocVw/res/idr_boun.ico -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MDIDocVw/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | #if (_ATL_VER < 0x0700) 4 | #include 5 | #endif //(_ATL_VER < 0x0700) 6 | -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MDIDocVw/stdafx.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | extern CAppModule _Module; 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MTPad/res/MTPad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/MTPad/res/MTPad.ico -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MTPad/res/MTPadDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/MTPad/res/MTPadDoc.ico -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MTPad/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/MTPad/res/Toolbar.bmp -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MTPad/res/ToolbarCE.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/MTPad/res/ToolbarCE.bmp -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MTPad/res/printpre.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/MTPad/res/printpre.bmp -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MTPad/stdatl.cpp: -------------------------------------------------------------------------------- 1 | #include "stdatl.h" 2 | 3 | #if (_ATL_VER < 0x0700) && !defined(_WIN32_WCE) 4 | #include 5 | #endif //(_ATL_VER < 0x0700) 6 | -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/MiniPie/res/MiniPie.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/MiniPie/res/MiniPie.ico -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/TabBrowser/TabBrowser.h: -------------------------------------------------------------------------------- 1 | // TabBrowser.h 2 | -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/TabBrowser/res/Go.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/TabBrowser/res/Go.bmp -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/WTLExplorer/res/go.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/WTL81/Samples/WTLExplorer/res/go.bmp -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/Wizard97Test/Wizard97Test.h: -------------------------------------------------------------------------------- 1 | // Wizard97Test.h 2 | -------------------------------------------------------------------------------- /src/installation/WTL81/Samples/Wizard97Test/help/Context.h: -------------------------------------------------------------------------------- 1 | #include "..\resource.hm" 2 | -------------------------------------------------------------------------------- /src/installation/bin/bin.dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/bin/bin.dir -------------------------------------------------------------------------------- /src/installation/include/dui/Accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/Accelerator.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiAttrCrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiAttrCrack.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiCalendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiCalendar.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiComboBox.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiDef.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiDropDown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiDropDown.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiHeaderCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiHeaderCtrl.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiHotKeyCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiHotKeyCtrl.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiListCtrl.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiMenu.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiMessageBox.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiRichEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiRichEdit.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiSkinBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiSkinBase.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiSplitWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiSplitWnd.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiTreeCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiTreeCtrl.h -------------------------------------------------------------------------------- /src/installation/include/dui/DuiWndFactoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/DuiWndFactoryManager.h -------------------------------------------------------------------------------- /src/installation/include/dui/MenuWndHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/MenuWndHook.h -------------------------------------------------------------------------------- /src/installation/include/dui/Name2ID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/Name2ID.h -------------------------------------------------------------------------------- /src/installation/include/dui/SimpleWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/SimpleWnd.h -------------------------------------------------------------------------------- /src/installation/include/dui/duiItempanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duiItempanel.h -------------------------------------------------------------------------------- /src/installation/include/dui/duihostwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duihostwnd.h -------------------------------------------------------------------------------- /src/installation/include/dui/duilistbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duilistbox.h -------------------------------------------------------------------------------- /src/installation/include/dui/duilistboxex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duilistboxex.h -------------------------------------------------------------------------------- /src/installation/include/dui/duimsgcracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duimsgcracker.h -------------------------------------------------------------------------------- /src/installation/include/dui/duiobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duiobject.h -------------------------------------------------------------------------------- /src/installation/include/dui/duiresproviderbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duiresproviderbase.h -------------------------------------------------------------------------------- /src/installation/include/dui/duiskin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duiskin.h -------------------------------------------------------------------------------- /src/installation/include/dui/duitreebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duitreebox.h -------------------------------------------------------------------------------- /src/installation/include/dui/duiwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duiwnd.h -------------------------------------------------------------------------------- /src/installation/include/dui/duiwndcmnctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duiwndcmnctrl.h -------------------------------------------------------------------------------- /src/installation/include/dui/duiwnddlgfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duiwnddlgfile.h -------------------------------------------------------------------------------- /src/installation/include/dui/duiwndnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duiwndnotify.h -------------------------------------------------------------------------------- /src/installation/include/dui/duiwndpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duiwndpanel.h -------------------------------------------------------------------------------- /src/installation/include/dui/duiwndstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/duiwndstyle.h -------------------------------------------------------------------------------- /src/installation/include/dui/gdialpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/gdialpha.h -------------------------------------------------------------------------------- /src/installation/include/dui/mybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/mybuffer.h -------------------------------------------------------------------------------- /src/installation/include/dui/stree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/dui/stree.hpp -------------------------------------------------------------------------------- /src/installation/include/include.dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/include/include.dir -------------------------------------------------------------------------------- /src/installation/lib/library.dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/lib/library.dir -------------------------------------------------------------------------------- /src/installation/tools/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/tools/7z.exe -------------------------------------------------------------------------------- /src/installation/tools/SoUIEditor-Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/tools/SoUIEditor-Release.exe -------------------------------------------------------------------------------- /src/installation/tools/residbuilder2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/tools/residbuilder2.exe -------------------------------------------------------------------------------- /src/installation/tools/residbuilder21.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/tools/residbuilder21.exe -------------------------------------------------------------------------------- /src/installation/tools/tools.dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/installation/tools/tools.dir -------------------------------------------------------------------------------- /src/tools/SoUIEditor/MainDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/MainDlg.cpp -------------------------------------------------------------------------------- /src/tools/SoUIEditor/MainDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/MainDlg.h -------------------------------------------------------------------------------- /src/tools/SoUIEditor/NewSkinDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/NewSkinDlg.cpp -------------------------------------------------------------------------------- /src/tools/SoUIEditor/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/ReadMe.txt -------------------------------------------------------------------------------- /src/tools/SoUIEditor/SciLexer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/SciLexer.dll -------------------------------------------------------------------------------- /src/tools/SoUIEditor/ScintillaWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/ScintillaWnd.cpp -------------------------------------------------------------------------------- /src/tools/SoUIEditor/ScintillaWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/ScintillaWnd.h -------------------------------------------------------------------------------- /src/tools/SoUIEditor/SoUIEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/SoUIEditor.cpp -------------------------------------------------------------------------------- /src/tools/SoUIEditor/SoUIEditor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/SoUIEditor.rc -------------------------------------------------------------------------------- /src/tools/SoUIEditor/SoUIEditor.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/tools/SoUIEditor/UIHander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/UIHander.cpp -------------------------------------------------------------------------------- /src/tools/SoUIEditor/UIHander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/UIHander.h -------------------------------------------------------------------------------- /src/tools/SoUIEditor/colorpicker/DuiColorPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/colorpicker/DuiColorPicker.cpp -------------------------------------------------------------------------------- /src/tools/SoUIEditor/duires/SoUIEditor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/duires/SoUIEditor.ico -------------------------------------------------------------------------------- /src/tools/SoUIEditor/duires/winres.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/duires/winres.rc2 -------------------------------------------------------------------------------- /src/tools/SoUIEditor/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/resource.h -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/btn_normal_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/btn_normal_yellow.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/btn_sys_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/btn_sys_close.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/btn_sys_maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/btn_sys_maximize.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/btn_sys_minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/btn_sys_minimize.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/btn_sys_restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/btn_sys_restore.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/btn_wnd_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/btn_wnd_checkbox.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/btn_wnd_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/btn_wnd_radio.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/check.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/dlg_bg_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/dlg_bg_frame.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/dropbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/dropbtn.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/focus_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/focus_checkbox.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/focus_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/focus_radio.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/img_edit_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/img_edit_border.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/scrollbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/scrollbar.bmp -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/split_horz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/split_horz.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/split_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/split_vert.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/skin/image/tab_common.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/skin/image/tab_common.png -------------------------------------------------------------------------------- /src/tools/SoUIEditor/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/SoUIEditor/stdafx.h -------------------------------------------------------------------------------- /src/tools/residbuilder/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/residbuilder/ReadMe.txt -------------------------------------------------------------------------------- /src/tools/residbuilder/residbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/residbuilder/residbuilder.cpp -------------------------------------------------------------------------------- /src/tools/residbuilder/residbuilder2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/residbuilder/residbuilder2.vcproj -------------------------------------------------------------------------------- /src/tools/residbuilder/residbuilder2.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /src/tools/residbuilder/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/residbuilder/stdafx.cpp -------------------------------------------------------------------------------- /src/tools/residbuilder/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/residbuilder/stdafx.h -------------------------------------------------------------------------------- /src/tools/wizard.setup/MainDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/wizard.setup/MainDlg.h -------------------------------------------------------------------------------- /src/tools/wizard.setup/res/wizard.setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/wizard.setup/res/wizard.setup.ico -------------------------------------------------------------------------------- /src/tools/wizard.setup/wizard.setup.h: -------------------------------------------------------------------------------- 1 | // wizard.setup.h 2 | -------------------------------------------------------------------------------- /src/tools/wizard.setup/wizard.setup.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/src/tools/wizard.setup/wizard.setup.rc -------------------------------------------------------------------------------- /src/tools/wizard.setup/wizard.setup.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /tools/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/7z.exe -------------------------------------------------------------------------------- /tools/SoUIEditor-Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/SoUIEditor-Release.exe -------------------------------------------------------------------------------- /tools/residbuilder2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/residbuilder2.exe -------------------------------------------------------------------------------- /tools/residbuilder21.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/residbuilder21.exe -------------------------------------------------------------------------------- /tools/tools.dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/tools.dir -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/2052/Images/DottedHori.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/DuiEngineWizard/2052/Images/DottedHori.gif -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/2052/Images/DottedVert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/DuiEngineWizard/2052/Images/DottedVert.gif -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/2052/Images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/DuiEngineWizard/2052/Images/spacer.gif -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/2052/NewStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/DuiEngineWizard/2052/NewStyles.css -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/HTML/2052/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/DuiEngineWizard/HTML/2052/default.htm -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/Images/DuiEngineWizard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/DuiEngineWizard/Images/DuiEngineWizard.gif -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/Templates/2052/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/DuiEngineWizard/Templates/2052/ReadMe.txt -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/Templates/2052/UIHander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/DuiEngineWizard/Templates/2052/UIHander.cpp -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/Templates/2052/dui-demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/DuiEngineWizard/Templates/2052/dui-demo.cpp -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/Templates/2052/dui-demo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/DuiEngineWizard/Templates/2052/dui-demo.rc -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/Templates/2052/duires/name2id.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/Templates/2052/duires/winres.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/Templates/2052/duires/winres.rc2: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "duires.h" 3 | #pragma message("include winres.rc2") 4 | -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/Templates/2052/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/DuiEngineWizard/Templates/2052/resource.h -------------------------------------------------------------------------------- /tools/wizard/DuiEngineWizard/Templates/2052/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/DuiEngineWizard/Templates/2052/stdafx.h -------------------------------------------------------------------------------- /tools/wizard/scripts/vs2008/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/scripts/vs2008/default.js -------------------------------------------------------------------------------- /tools/wizard/scripts/vs2012/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/scripts/vs2012/default.js -------------------------------------------------------------------------------- /tools/wizard/vs-entry/2005/DuiEngineWizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/vs-entry/2005/DuiEngineWizard.ico -------------------------------------------------------------------------------- /tools/wizard/vs-entry/2005/DuiEngineWizard.vsdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/vs-entry/2005/DuiEngineWizard.vsdir -------------------------------------------------------------------------------- /tools/wizard/vs-entry/2008/DuiEngineWizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/vs-entry/2008/DuiEngineWizard.ico -------------------------------------------------------------------------------- /tools/wizard/vs-entry/2008/DuiEngineWizard.vsdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/vs-entry/2008/DuiEngineWizard.vsdir -------------------------------------------------------------------------------- /tools/wizard/vs-entry/2010/DuiEngineWizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/vs-entry/2010/DuiEngineWizard.ico -------------------------------------------------------------------------------- /tools/wizard/vs-entry/2010/DuiEngineWizard.vsdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/vs-entry/2010/DuiEngineWizard.vsdir -------------------------------------------------------------------------------- /tools/wizard/vs-entry/2012/DuiEngineWizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/vs-entry/2012/DuiEngineWizard.ico -------------------------------------------------------------------------------- /tools/wizard/vs-entry/2012/DuiEngineWizard.vsdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/vs-entry/2012/DuiEngineWizard.vsdir -------------------------------------------------------------------------------- /tools/wizard/vs-entry/2013/DuiEngineWizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/vs-entry/2013/DuiEngineWizard.ico -------------------------------------------------------------------------------- /tools/wizard/vs-entry/2013/DuiEngineWizard.vsdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/vs-entry/2013/DuiEngineWizard.vsdir -------------------------------------------------------------------------------- /tools/wizard/vslist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/vslist.ini -------------------------------------------------------------------------------- /tools/wizard/wizard.setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzhwl/duiplant/678cd430c325300ca3a541912a037b578b26e237/tools/wizard/wizard.setup.exe --------------------------------------------------------------------------------