├── .gitignore ├── ImageEditor ├── ImageEditor.cpp ├── ImageEditor.h ├── ImageEditor.ico ├── ImageEditor.rc ├── ImageEditor.vcproj ├── ReadMe.txt ├── Resource.h ├── main.cpp ├── small.ico ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── LICENSE ├── LotteryDraw ├── Bonuses.cpp ├── Bonuses.h ├── Employees.cpp ├── Employees.h ├── LotteryDraw.rc ├── LotteryDraw.vcproj ├── MainUi.cpp ├── MainUi.h ├── MiscUtil.cpp ├── MiscUtil.h ├── ResultUi.cpp ├── ResultUi.h ├── UiUtil.cpp ├── UiUtil.h ├── main.cpp ├── resource.h ├── resource │ └── main.ico ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md ├── UIEditor ├── Editor.cpp ├── Editor.h ├── EditorUtil.cpp ├── EditorUtil.h ├── PromptUI.cpp ├── PromptUI.h ├── ReadMe.txt ├── ScintillaWnd.cpp ├── ScintillaWnd.h ├── UIEditor.cpp ├── UIEditor.ico ├── UIEditor.rc ├── UIEditor.vcproj ├── Utf8File.cpp ├── Utf8File.h ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── UIMocker ├── Mocker.cpp ├── Mocker.h ├── ReadMe.txt ├── UIMocker.cpp ├── UIMocker.ico ├── UIMocker.rc ├── UIMocker.vcproj ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── WeChat ├── Config.cpp ├── Config.h ├── EmotionUi.cpp ├── EmotionUi.h ├── HttpUtil.cpp ├── HttpUtil.h ├── ImageLoader.cpp ├── ImageLoader.h ├── JsonUtil.cpp ├── JsonUtil.h ├── Locker.cpp ├── Locker.h ├── LoginUi.cpp ├── LoginUi.h ├── MainUi.cpp ├── MainUi.h ├── MiscUtil.cpp ├── MiscUtil.h ├── UiUtil.cpp ├── UiUtil.h ├── WeChat.rc ├── WeChat.vcproj ├── WeChatLogic.cpp ├── WeChatLogic.h ├── main.cpp ├── main.ico ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── autotest ├── AutoTest.cpp ├── AutoTest.vcproj ├── ReadMe.txt ├── TestArrayT.h ├── TestBuffer.h ├── TestCore.h ├── TestData │ ├── FileMapping │ │ └── 1.txt │ ├── FileUtil │ │ └── 1.txt │ ├── Zip │ │ ├── Data.zip │ │ └── Data │ │ │ ├── 1 │ │ │ ├── 11 │ │ │ │ └── 111.txt │ │ │ └── 11.txt │ │ │ └── 2 │ │ │ ├── 22 │ │ │ └── 222.txt │ │ │ └── 22.txt │ ├── images │ │ └── button.png │ └── resource │ │ └── package │ │ ├── data │ │ ├── data.txt │ │ ├── txt │ │ │ ├── 123.txt │ │ │ └── 456.txt │ │ └── xml │ │ │ ├── data.xml │ │ │ └── window.xml │ │ ├── package.xml │ │ ├── string │ │ └── 2052 │ │ │ └── 1.xml │ │ └── style │ │ ├── AboutUI.xml │ │ └── TestUI.xml ├── TestDataTypes.h ├── TestDelayedRelease.h ├── TestEvent.h ├── TestFileMapping.h ├── TestFileSystem.h ├── TestFileUtil.h ├── TestFrameBase.h ├── TestFrameBaseParser.h ├── TestFrameParser.h ├── TestGdiUtil.h ├── TestListT.h ├── TestModule.h ├── TestMsgLoop.h ├── TestReflect.h ├── TestString.h ├── TestStringBundle.h ├── TestTimerSrv.h ├── TestUtil.h ├── TestWindowBase.h ├── TestXmlDataReader.h ├── TestZip.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── imgviewer ├── FileAssoc.cpp ├── FileAssoc.h ├── MapFile.h ├── NFileFinder.cpp ├── NFileFinder.h ├── ProcUtil.cpp ├── ProcUtil.h ├── ReadMe.txt ├── Registry.cpp ├── Registry.h ├── Resource.h ├── ViewerData.h ├── imgviewer.cpp ├── imgviewer.h ├── imgviewer.ico ├── imgviewer.rc ├── imgviewer.vcproj ├── main.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── nui.sln ├── nui ├── NUI.h ├── NUI.vcproj ├── ReadMe.txt ├── base │ ├── BaseObj.h │ ├── DataTypes.h │ ├── FastDelegate.h │ ├── NAssert.h │ ├── NAutoPtr.h │ ├── NCore.h │ ├── NHolder.h │ ├── NInstPtr.h │ ├── NMacro.h │ ├── NMemTool.h │ ├── NReflect.h │ ├── NString.h │ ├── NThread.h │ ├── implement │ │ ├── BaseObj.cpp │ │ ├── DataTypes.cpp │ │ ├── DelayedReleaser.cpp │ │ ├── DelayedReleaser.h │ │ ├── MemRecorder.cpp │ │ ├── MemRecorder.h │ │ ├── NAssert.cpp │ │ ├── NCoreImpl.cpp │ │ ├── NCoreImpl.h │ │ ├── NHolder.cpp │ │ ├── NReflect.cpp │ │ ├── NString.cpp │ │ └── NThread.cpp │ └── noncopyable.h ├── data │ ├── NArrayT.h │ ├── NBuffer.h │ ├── NDataReader.h │ ├── NFileMapping.h │ ├── NFileSystem.h │ ├── NIconv.h │ ├── NListT.h │ ├── NModule.h │ ├── NStringBundle.h │ ├── NZip.h │ └── implement │ │ ├── NBufferImpl.cpp │ │ ├── NBufferImpl.h │ │ ├── NDataReader.cpp │ │ ├── NFileMappingImpl.cpp │ │ ├── NFileMappingImpl.h │ │ ├── NFileSystemImpl.cpp │ │ ├── NFileSystemImpl.h │ │ ├── NIconv.cpp │ │ ├── NModule.cpp │ │ ├── NPackFileSystemImpl.cpp │ │ ├── NPackFileSystemImpl.h │ │ ├── NPackageFile.cpp │ │ ├── NPackageFile.h │ │ ├── NRealFileSystemImpl.cpp │ │ ├── NRealFileSystemImpl.h │ │ ├── NStringBundleImpl.cpp │ │ ├── NStringBundleImpl.h │ │ ├── NZipImpl.cpp │ │ ├── NZipImpl.h │ │ ├── XmlDataReader.cpp │ │ └── XmlDataReader.h ├── dllmain.cpp ├── parser │ ├── NParser.h │ └── implement │ │ ├── BaseParser.h │ │ ├── ButtonParserImpl.cpp │ │ ├── ButtonParserImpl.h │ │ ├── CheckBoxParserImpl.cpp │ │ ├── CheckBoxParserImpl.h │ │ ├── EditParserImpl.cpp │ │ ├── EditParserImpl.h │ │ ├── FrameParserImpl.cpp │ │ ├── FrameParserImpl.h │ │ ├── ImageParserImpl.cpp │ │ ├── ImageParserImpl.h │ │ ├── LabelParserImpl.cpp │ │ ├── LabelParserImpl.h │ │ ├── LayoutParserImpl.cpp │ │ ├── LayoutParserImpl.h │ │ ├── LinkParserImpl.cpp │ │ ├── LinkParserImpl.h │ │ ├── NParserImpl.cpp │ │ ├── NParserImpl.h │ │ ├── NativeParserImpl.cpp │ │ ├── NativeParserImpl.h │ │ ├── ParserUtil.cpp │ │ ├── ParserUtil.h │ │ ├── RadioBoxParserImpl.cpp │ │ └── RadioBoxParserImpl.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── ui │ ├── NButton.h │ ├── NCheckBox.h │ ├── NCursor.h │ ├── NDraw.h │ ├── NEdit.h │ ├── NEvent.h │ ├── NFont.h │ ├── NFrame.h │ ├── NFrameBase.h │ ├── NHeader.h │ ├── NImage.h │ ├── NImageDraw.h │ ├── NLabel.h │ ├── NLayout.h │ ├── NLayoutArranger.h │ ├── NLink.h │ ├── NList.h │ ├── NMsgLoop.h │ ├── NNative.h │ ├── NRadioBox.h │ ├── NRender.h │ ├── NRenderClip.h │ ├── NRenderDef.h │ ├── NResourceLoader.h │ ├── NScroll.h │ ├── NShapeDraw.h │ ├── NTextAttr.h │ ├── NTimerSrv.h │ ├── NUiBus.h │ ├── NUiProc.h │ ├── NWindow.h │ ├── NWindowBase.h │ ├── UiDef.h │ └── implement │ │ ├── BaseImageDraw.cpp │ │ ├── BaseImageDraw.h │ │ ├── Gdi │ │ ├── AlphaDC.cpp │ │ ├── AlphaDC.h │ │ ├── GdiCursor.cpp │ │ ├── GdiCursor.h │ │ ├── GdiFont.cpp │ │ ├── GdiFont.h │ │ ├── GdiImageDraw.cpp │ │ ├── GdiImageDraw.h │ │ ├── GdiObjMgr.cpp │ │ ├── GdiObjMgr.h │ │ ├── GdiRender.cpp │ │ ├── GdiRender.h │ │ ├── GdiResourceLoader.cpp │ │ ├── GdiResourceLoader.h │ │ ├── GdiShapeDraw.cpp │ │ ├── GdiShapeDraw.h │ │ ├── GdiTextAttr.cpp │ │ ├── GdiTextAttr.h │ │ ├── GdiUtil.cpp │ │ ├── GdiUtil.h │ │ ├── ImageDC.h │ │ ├── MemDC.h │ │ ├── SSE.cpp │ │ ├── SSE.h │ │ ├── StreamImpl.cpp │ │ ├── StreamImpl.h │ │ └── TempDC.h │ │ ├── NBrush.cpp │ │ ├── NButtonImpl.cpp │ │ ├── NCheckBoxImpl.cpp │ │ ├── NEditImpl.cpp │ │ ├── NEvent.cpp │ │ ├── NFrameBaseImpl.cpp │ │ ├── NFrameImpl.cpp │ │ ├── NHeaderImpl.cpp │ │ ├── NHorzLayoutArranger.cpp │ │ ├── NHorzLayoutArranger.h │ │ ├── NImageImpl.cpp │ │ ├── NLabelImpl.cpp │ │ ├── NLayoutImpl.cpp │ │ ├── NLinkImpl.cpp │ │ ├── NListImpl.cpp │ │ ├── NMsgLoop.cpp │ │ ├── NNativeImpl.cpp │ │ ├── NRadioBoxImpl.cpp │ │ ├── NScrollImpl.cpp │ │ ├── NShapeDrawImpl.cpp │ │ ├── NTileLayoutArranger.cpp │ │ ├── NTileLayoutArranger.h │ │ ├── NTimerSrvImpl.cpp │ │ ├── NTimerSrvImpl.h │ │ ├── NUiBus.cpp │ │ ├── NUiProcImpl.cpp │ │ ├── NUiProcImpl.h │ │ ├── NVertLayoutArranger.cpp │ │ ├── NVertLayoutArranger.h │ │ ├── NWindowBase.cpp │ │ ├── NWindowImpl.cpp │ │ ├── UiUtil.cpp │ │ ├── UiUtil.h │ │ ├── WindowDef.h │ │ ├── WindowMap.cpp │ │ ├── WindowMap.h │ │ ├── WindowUtil.cpp │ │ └── WindowUtil.h └── util │ ├── NDiagnose.h │ ├── NFileUtil.h │ ├── NMisc.h │ ├── NShellUtil.h │ └── implement │ ├── NFileUtil.cpp │ └── NShellUtil.cpp ├── thirdparty ├── Readme.txt ├── Scintilla │ ├── License.txt │ ├── SciLexer.dll │ ├── SciLexer.h │ ├── Sci_Position.h │ └── Scintilla.h ├── gtest │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── build-aux │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ └── missing │ ├── cmake │ │ └── internal_utils.cmake │ ├── codegear │ │ ├── gtest.cbproj │ │ ├── gtest.groupproj │ │ ├── gtest_all.cc │ │ ├── gtest_link.cc │ │ ├── gtest_main.cbproj │ │ └── gtest_unittest.cbproj │ ├── configure │ ├── configure.ac │ ├── fused-src │ │ └── gtest │ │ │ ├── gtest-all.cc │ │ │ ├── gtest.h │ │ │ └── gtest_main.cc │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ ├── m4 │ │ ├── acx_pthread.m4 │ │ ├── gtest.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── make │ │ └── Makefile │ ├── msvc │ │ ├── gtest-md.sln │ │ ├── gtest-md.vcproj │ │ ├── gtest.sln │ │ ├── gtest.vcproj │ │ ├── gtest_main-md.vcproj │ │ ├── gtest_main.vcproj │ │ ├── gtest_prod_test-md.vcproj │ │ ├── gtest_prod_test.vcproj │ │ ├── gtest_unittest-md.vcproj │ │ └── gtest_unittest.vcproj │ ├── samples │ │ ├── prime_tables.h │ │ ├── sample1.cc │ │ ├── sample1.h │ │ ├── sample10_unittest.cc │ │ ├── sample1_unittest.cc │ │ ├── sample2.cc │ │ ├── sample2.h │ │ ├── sample2_unittest.cc │ │ ├── sample3-inl.h │ │ ├── sample3_unittest.cc │ │ ├── sample4.cc │ │ ├── sample4.h │ │ ├── sample4_unittest.cc │ │ ├── sample5_unittest.cc │ │ ├── sample6_unittest.cc │ │ ├── sample7_unittest.cc │ │ ├── sample8_unittest.cc │ │ └── sample9_unittest.cc │ ├── scripts │ │ ├── fuse_gtest_files.py │ │ ├── gen_gtest_pred_impl.py │ │ ├── gtest-config.in │ │ ├── pump.py │ │ └── test │ │ │ └── Makefile │ ├── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc │ ├── test │ │ ├── gtest-death-test_ex_test.cc │ │ ├── gtest-death-test_test.cc │ │ ├── gtest-filepath_test.cc │ │ ├── gtest-linked_ptr_test.cc │ │ ├── gtest-listener_test.cc │ │ ├── gtest-message_test.cc │ │ ├── gtest-options_test.cc │ │ ├── gtest-param-test2_test.cc │ │ ├── gtest-param-test_test.cc │ │ ├── gtest-param-test_test.h │ │ ├── gtest-port_test.cc │ │ ├── gtest-printers_test.cc │ │ ├── gtest-test-part_test.cc │ │ ├── gtest-tuple_test.cc │ │ ├── gtest-typed-test2_test.cc │ │ ├── gtest-typed-test_test.cc │ │ ├── gtest-typed-test_test.h │ │ ├── gtest-unittest-api_test.cc │ │ ├── gtest_all_test.cc │ │ ├── gtest_break_on_failure_unittest.py │ │ ├── gtest_break_on_failure_unittest_.cc │ │ ├── gtest_catch_exceptions_test.py │ │ ├── gtest_catch_exceptions_test_.cc │ │ ├── gtest_color_test.py │ │ ├── gtest_color_test_.cc │ │ ├── gtest_env_var_test.py │ │ ├── gtest_env_var_test_.cc │ │ ├── gtest_environment_test.cc │ │ ├── gtest_filter_unittest.py │ │ ├── gtest_filter_unittest_.cc │ │ ├── gtest_help_test.py │ │ ├── gtest_help_test_.cc │ │ ├── gtest_list_tests_unittest.py │ │ ├── gtest_list_tests_unittest_.cc │ │ ├── gtest_main_unittest.cc │ │ ├── gtest_no_test_unittest.cc │ │ ├── gtest_output_test.py │ │ ├── gtest_output_test_.cc │ │ ├── gtest_output_test_golden_lin.txt │ │ ├── gtest_pred_impl_unittest.cc │ │ ├── gtest_premature_exit_test.cc │ │ ├── gtest_prod_test.cc │ │ ├── gtest_repeat_test.cc │ │ ├── gtest_shuffle_test.py │ │ ├── gtest_shuffle_test_.cc │ │ ├── gtest_sole_header_test.cc │ │ ├── gtest_stress_test.cc │ │ ├── gtest_test_utils.py │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ ├── gtest_throw_on_failure_test.py │ │ ├── gtest_throw_on_failure_test_.cc │ │ ├── gtest_uninitialized_test.py │ │ ├── gtest_uninitialized_test_.cc │ │ ├── gtest_unittest.cc │ │ ├── gtest_xml_outfile1_test_.cc │ │ ├── gtest_xml_outfile2_test_.cc │ │ ├── gtest_xml_outfiles_test.py │ │ ├── gtest_xml_output_unittest.py │ │ ├── gtest_xml_output_unittest_.cc │ │ ├── gtest_xml_test_utils.py │ │ ├── production.cc │ │ └── production.h │ └── xcode │ │ ├── Config │ │ ├── DebugProject.xcconfig │ │ ├── FrameworkTarget.xcconfig │ │ ├── General.xcconfig │ │ ├── ReleaseProject.xcconfig │ │ ├── StaticLibraryTarget.xcconfig │ │ └── TestTarget.xcconfig │ │ ├── Resources │ │ └── Info.plist │ │ ├── Samples │ │ └── FrameworkSample │ │ │ ├── Info.plist │ │ │ ├── WidgetFramework.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── runtests.sh │ │ │ ├── widget.cc │ │ │ ├── widget.h │ │ │ └── widget_test.cc │ │ ├── Scripts │ │ ├── runtests.sh │ │ └── versiongenerate.py │ │ └── gtest.xcodeproj │ │ └── project.pbxproj ├── jsoncpp │ ├── AUTHORS │ ├── LICENSE │ ├── NEWS.txt │ ├── README.txt │ ├── SConstruct │ ├── amalgamate.py │ ├── devtools │ │ ├── __init__.py │ │ ├── antglob.py │ │ ├── fixeol.py │ │ ├── licenseupdater.py │ │ └── tarball.py │ ├── doc │ │ ├── doxyfile.in │ │ ├── footer.html │ │ ├── header.html │ │ ├── jsoncpp.dox │ │ ├── readme.txt │ │ └── roadmap.dox │ ├── doxybuild.py │ ├── include │ │ └── json │ │ │ ├── autolink.h │ │ │ ├── config.h │ │ │ ├── features.h │ │ │ ├── forwards.h │ │ │ ├── json.h │ │ │ ├── reader.h │ │ │ ├── value.h │ │ │ └── writer.h │ ├── jsoncpp.vcproj │ ├── makefiles │ │ └── vs71 │ │ │ ├── jsoncpp.sln │ │ │ ├── jsontest.vcproj │ │ │ ├── lib_json.vcproj │ │ │ └── test_lib_json.vcproj │ ├── makerelease.py │ ├── scons-tools │ │ ├── globtool.py │ │ ├── srcdist.py │ │ ├── substinfile.py │ │ └── targz.py │ ├── src │ │ ├── jsontestrunner │ │ │ ├── main.cpp │ │ │ └── sconscript │ │ ├── lib_json │ │ │ ├── json_batchallocator.h │ │ │ ├── json_internalarray.inl │ │ │ ├── json_internalmap.inl │ │ │ ├── json_reader.cpp │ │ │ ├── json_tool.h │ │ │ ├── json_value.cpp │ │ │ ├── json_valueiterator.inl │ │ │ ├── json_writer.cpp │ │ │ └── sconscript │ │ └── test_lib_json │ │ │ ├── jsontest.cpp │ │ │ ├── jsontest.h │ │ │ ├── main.cpp │ │ │ └── sconscript │ ├── test │ │ ├── cleantests.py │ │ ├── data │ │ │ ├── fail_test_array_01.json │ │ │ ├── test_array_01.expected │ │ │ ├── test_array_01.json │ │ │ ├── test_array_02.expected │ │ │ ├── test_array_02.json │ │ │ ├── test_array_03.expected │ │ │ ├── test_array_03.json │ │ │ ├── test_array_04.expected │ │ │ ├── test_array_04.json │ │ │ ├── test_array_05.expected │ │ │ ├── test_array_05.json │ │ │ ├── test_array_06.expected │ │ │ ├── test_array_06.json │ │ │ ├── test_basic_01.expected │ │ │ ├── test_basic_01.json │ │ │ ├── test_basic_02.expected │ │ │ ├── test_basic_02.json │ │ │ ├── test_basic_03.expected │ │ │ ├── test_basic_03.json │ │ │ ├── test_basic_04.expected │ │ │ ├── test_basic_04.json │ │ │ ├── test_basic_05.expected │ │ │ ├── test_basic_05.json │ │ │ ├── test_basic_06.expected │ │ │ ├── test_basic_06.json │ │ │ ├── test_basic_07.expected │ │ │ ├── test_basic_07.json │ │ │ ├── test_basic_08.expected │ │ │ ├── test_basic_08.json │ │ │ ├── test_basic_09.expected │ │ │ ├── test_basic_09.json │ │ │ ├── test_comment_01.expected │ │ │ ├── test_comment_01.json │ │ │ ├── test_complex_01.expected │ │ │ ├── test_complex_01.json │ │ │ ├── test_integer_01.expected │ │ │ ├── test_integer_01.json │ │ │ ├── test_integer_02.expected │ │ │ ├── test_integer_02.json │ │ │ ├── test_integer_03.expected │ │ │ ├── test_integer_03.json │ │ │ ├── test_integer_04.expected │ │ │ ├── test_integer_04.json │ │ │ ├── test_integer_05.expected │ │ │ ├── test_integer_05.json │ │ │ ├── test_integer_06_64bits.expected │ │ │ ├── test_integer_06_64bits.json │ │ │ ├── test_integer_07_64bits.expected │ │ │ ├── test_integer_07_64bits.json │ │ │ ├── test_integer_08_64bits.expected │ │ │ ├── test_integer_08_64bits.json │ │ │ ├── test_large_01.expected │ │ │ ├── test_large_01.json │ │ │ ├── test_object_01.expected │ │ │ ├── test_object_01.json │ │ │ ├── test_object_02.expected │ │ │ ├── test_object_02.json │ │ │ ├── test_object_03.expected │ │ │ ├── test_object_03.json │ │ │ ├── test_object_04.expected │ │ │ ├── test_object_04.json │ │ │ ├── test_preserve_comment_01.expected │ │ │ ├── test_preserve_comment_01.json │ │ │ ├── test_real_01.expected │ │ │ ├── test_real_01.json │ │ │ ├── test_real_02.expected │ │ │ ├── test_real_02.json │ │ │ ├── test_real_03.expected │ │ │ ├── test_real_03.json │ │ │ ├── test_real_04.expected │ │ │ ├── test_real_04.json │ │ │ ├── test_real_05.expected │ │ │ ├── test_real_05.json │ │ │ ├── test_real_06.expected │ │ │ ├── test_real_06.json │ │ │ ├── test_real_07.expected │ │ │ ├── test_real_07.json │ │ │ ├── test_string_01.expected │ │ │ ├── test_string_01.json │ │ │ ├── test_string_02.expected │ │ │ ├── test_string_02.json │ │ │ ├── test_string_03.expected │ │ │ ├── test_string_03.json │ │ │ ├── test_string_unicode_01.expected │ │ │ ├── test_string_unicode_01.json │ │ │ ├── test_string_unicode_02.expected │ │ │ ├── test_string_unicode_02.json │ │ │ ├── test_string_unicode_03.expected │ │ │ ├── test_string_unicode_03.json │ │ │ ├── test_string_unicode_04.expected │ │ │ ├── test_string_unicode_04.json │ │ │ ├── test_string_unicode_05.expected │ │ │ └── test_string_unicode_05.json │ │ ├── generate_expected.py │ │ ├── jsonchecker │ │ │ ├── fail1.json │ │ │ ├── fail10.json │ │ │ ├── fail11.json │ │ │ ├── fail12.json │ │ │ ├── fail13.json │ │ │ ├── fail14.json │ │ │ ├── fail15.json │ │ │ ├── fail16.json │ │ │ ├── fail17.json │ │ │ ├── fail18.json │ │ │ ├── fail19.json │ │ │ ├── fail2.json │ │ │ ├── fail20.json │ │ │ ├── fail21.json │ │ │ ├── fail22.json │ │ │ ├── fail23.json │ │ │ ├── fail24.json │ │ │ ├── fail25.json │ │ │ ├── fail26.json │ │ │ ├── fail27.json │ │ │ ├── fail28.json │ │ │ ├── fail29.json │ │ │ ├── fail3.json │ │ │ ├── fail30.json │ │ │ ├── fail31.json │ │ │ ├── fail32.json │ │ │ ├── fail33.json │ │ │ ├── fail4.json │ │ │ ├── fail5.json │ │ │ ├── fail6.json │ │ │ ├── fail7.json │ │ │ ├── fail8.json │ │ │ ├── fail9.json │ │ │ ├── pass1.json │ │ │ ├── pass2.json │ │ │ ├── pass3.json │ │ │ └── readme.txt │ │ ├── pyjsontestrunner.py │ │ ├── runjsontests.py │ │ └── rununittests.py │ └── version ├── thirdparty.sln ├── tinyxml │ ├── Makefile │ ├── changes.txt │ ├── docs │ │ ├── annotated.html │ │ ├── classTiXmlAttribute-members.html │ │ ├── classTiXmlAttribute.html │ │ ├── classTiXmlAttribute.png │ │ ├── classTiXmlBase-members.html │ │ ├── classTiXmlBase.html │ │ ├── classTiXmlBase.png │ │ ├── classTiXmlComment-members.html │ │ ├── classTiXmlComment.html │ │ ├── classTiXmlComment.png │ │ ├── classTiXmlDeclaration-members.html │ │ ├── classTiXmlDeclaration.html │ │ ├── classTiXmlDeclaration.png │ │ ├── classTiXmlDocument-members.html │ │ ├── classTiXmlDocument.html │ │ ├── classTiXmlDocument.png │ │ ├── classTiXmlElement-members.html │ │ ├── classTiXmlElement.html │ │ ├── classTiXmlElement.png │ │ ├── classTiXmlHandle-members.html │ │ ├── classTiXmlHandle.html │ │ ├── classTiXmlNode-members.html │ │ ├── classTiXmlNode.html │ │ ├── classTiXmlNode.png │ │ ├── classTiXmlPrinter-members.html │ │ ├── classTiXmlPrinter.html │ │ ├── classTiXmlPrinter.png │ │ ├── classTiXmlText-members.html │ │ ├── classTiXmlText.html │ │ ├── classTiXmlText.png │ │ ├── classTiXmlUnknown-members.html │ │ ├── classTiXmlUnknown.html │ │ ├── classTiXmlUnknown.png │ │ ├── classTiXmlVisitor-members.html │ │ ├── classTiXmlVisitor.html │ │ ├── classTiXmlVisitor.png │ │ ├── classes.html │ │ ├── deprecated.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── files.html │ │ ├── functions.html │ │ ├── functions_0x63.html │ │ ├── functions_0x64.html │ │ ├── functions_0x65.html │ │ ├── functions_0x66.html │ │ ├── functions_0x67.html │ │ ├── functions_0x69.html │ │ ├── functions_0x6c.html │ │ ├── functions_0x6e.html │ │ ├── functions_0x6f.html │ │ ├── functions_0x70.html │ │ ├── functions_0x71.html │ │ ├── functions_0x72.html │ │ ├── functions_0x73.html │ │ ├── functions_0x74.html │ │ ├── functions_0x75.html │ │ ├── functions_0x76.html │ │ ├── functions_enum.html │ │ ├── functions_func.html │ │ ├── functions_func_0x63.html │ │ ├── functions_func_0x64.html │ │ ├── functions_func_0x65.html │ │ ├── functions_func_0x66.html │ │ ├── functions_func_0x67.html │ │ ├── functions_func_0x69.html │ │ ├── functions_func_0x6c.html │ │ ├── functions_func_0x6e.html │ │ ├── functions_func_0x70.html │ │ ├── functions_func_0x71.html │ │ ├── functions_func_0x72.html │ │ ├── functions_func_0x73.html │ │ ├── functions_func_0x74.html │ │ ├── functions_func_0x75.html │ │ ├── functions_func_0x76.html │ │ ├── functions_rela.html │ │ ├── functions_vars.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── pages.html │ │ ├── tab_b.gif │ │ ├── tab_l.gif │ │ ├── tab_r.gif │ │ ├── tabs.css │ │ ├── tinystr_8h_source.html │ │ ├── tinyxml_8h_source.html │ │ └── tutorial0.html │ ├── readme.txt │ ├── tinyXmlTest.vcxproj │ ├── tinyXmlTestSTL.vcxproj │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxml.sln │ ├── tinyxml.vcproj │ ├── tinyxmlSTL.vcxproj │ ├── tinyxml_lib.vcxproj │ ├── tinyxmlerror.cpp │ ├── tinyxmlparser.cpp │ ├── utf8test.gif │ ├── utf8test.xml │ ├── utf8testverify.xml │ └── xmltest.cpp ├── vsprops │ ├── LibDebug.vsprops │ └── LibRelease.vsprops └── zip │ ├── ReadMe.txt │ ├── XUnzip.cpp │ ├── XUnzip.h │ ├── XZip.cpp │ ├── XZip.h │ ├── xtrace.h │ └── zip.vcproj ├── uidata ├── ImageEditor │ ├── package.xml │ ├── skin │ │ ├── common │ │ │ ├── button.png │ │ │ ├── checkBox.png │ │ │ ├── radioBox.png │ │ │ ├── sys_close_button.png │ │ │ ├── sys_max_button.png │ │ │ └── sys_min_button.png │ │ └── images │ │ │ └── nineimage.png │ ├── string │ │ └── 2052 │ │ │ ├── Common.xml │ │ │ └── Main.xml │ └── style │ │ ├── MainUI.xml │ │ └── sys_default_style.xml ├── UIEditor │ ├── package.xml │ ├── skin │ │ └── common │ │ │ ├── button.png │ │ │ ├── header.png │ │ │ ├── headerArrow.png │ │ │ ├── horzScrollBkg.png │ │ │ ├── horzScrollBlock.png │ │ │ ├── horzScrollSlider.png │ │ │ ├── sys_close_button.png │ │ │ ├── sys_max_button.png │ │ │ ├── sys_min_button.png │ │ │ ├── vertScrollBkg.png │ │ │ ├── vertScrollBlock.png │ │ │ └── vertScrollSlider.png │ ├── string │ │ └── 2052 │ │ │ ├── Common.xml │ │ │ └── Main.xml │ └── style │ │ ├── MainUI.xml │ │ ├── PromptUI.xml │ │ └── sys_default_style.xml ├── WeChat │ ├── package.xml │ ├── skin │ │ ├── common │ │ │ ├── button.png │ │ │ ├── header.png │ │ │ ├── headerArrow.png │ │ │ ├── horzScrollBkg.png │ │ │ ├── horzScrollBlock.png │ │ │ ├── horzScrollSlider.png │ │ │ ├── loading.gif │ │ │ ├── sys_close_button.png │ │ │ ├── sys_max_button.png │ │ │ ├── sys_min_button.png │ │ │ ├── vertScrollBkg.png │ │ │ ├── vertScrollBlock.png │ │ │ └── vertScrollSlider.png │ │ ├── main │ │ │ ├── cancel.png │ │ │ ├── config.png │ │ │ ├── contact.png │ │ │ ├── contactBkg.png │ │ │ ├── emotionTab.png │ │ │ ├── emotions.png │ │ │ ├── fileTab.png │ │ │ ├── msg.png │ │ │ ├── search.png │ │ │ └── send.png │ │ └── mockup │ │ │ └── avatar.png │ ├── string │ │ └── 2052 │ │ │ ├── Common.xml │ │ │ ├── LoginUi.xml │ │ │ └── MainUi.xml │ └── style │ │ ├── EmotionUi.xml │ │ ├── LoginUi.xml │ │ ├── MainUi.xml │ │ └── sys_default_style.xml └── uidata │ ├── data │ ├── data.txt │ ├── txt │ │ ├── 123.txt │ │ └── 456.txt │ └── xml │ │ ├── data.xml │ │ └── window.xml │ ├── package.xml │ ├── skin │ ├── common │ │ ├── button.png │ │ ├── checkBox.png │ │ ├── header.png │ │ ├── headerArrow.png │ │ ├── horzScrollBkg.png │ │ ├── horzScrollBlock.png │ │ ├── horzScrollSlider.png │ │ ├── radioBox.png │ │ ├── sys_close_button.png │ │ ├── sys_max_button.png │ │ ├── sys_min_button.png │ │ ├── vertScrollBkg.png │ │ ├── vertScrollBlock.png │ │ └── vertScrollSlider.png │ └── images │ │ ├── 0.gif │ │ ├── 3.gif │ │ ├── 514540469.png │ │ └── nineimage.png │ ├── string │ └── 2052 │ │ └── Common.xml │ └── style │ ├── AboutUI.xml │ ├── LayoutTest.xml │ └── sys_default_style.xml ├── uitest ├── ControlTest.cpp ├── ControlTest.h ├── LayoutTest.cpp ├── LayoutTest.h ├── ReadMe.txt ├── Resource.h ├── TestDrawImage.cpp ├── TestDrawImage.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── uitest.cpp ├── uitest.h ├── uitest.ico ├── uitest.rc └── uitest.vcproj └── vsprops ├── DLLDebug.vsprops ├── DLLRelease.vsprops ├── ExeDebug.vsprops ├── ExeRelease.vsprops ├── LibDebug.vsprops └── LibRelease.vsprops /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/.gitignore -------------------------------------------------------------------------------- /ImageEditor/ImageEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/ImageEditor/ImageEditor.cpp -------------------------------------------------------------------------------- /ImageEditor/ImageEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/ImageEditor/ImageEditor.h -------------------------------------------------------------------------------- /ImageEditor/ImageEditor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/ImageEditor/ImageEditor.ico -------------------------------------------------------------------------------- /ImageEditor/ImageEditor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/ImageEditor/ImageEditor.rc -------------------------------------------------------------------------------- /ImageEditor/ImageEditor.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/ImageEditor/ImageEditor.vcproj -------------------------------------------------------------------------------- /ImageEditor/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/ImageEditor/ReadMe.txt -------------------------------------------------------------------------------- /ImageEditor/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/ImageEditor/Resource.h -------------------------------------------------------------------------------- /ImageEditor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/ImageEditor/main.cpp -------------------------------------------------------------------------------- /ImageEditor/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/ImageEditor/small.ico -------------------------------------------------------------------------------- /ImageEditor/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/ImageEditor/stdafx.cpp -------------------------------------------------------------------------------- /ImageEditor/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/ImageEditor/stdafx.h -------------------------------------------------------------------------------- /ImageEditor/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/ImageEditor/targetver.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LICENSE -------------------------------------------------------------------------------- /LotteryDraw/Bonuses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/Bonuses.cpp -------------------------------------------------------------------------------- /LotteryDraw/Bonuses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/Bonuses.h -------------------------------------------------------------------------------- /LotteryDraw/Employees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/Employees.cpp -------------------------------------------------------------------------------- /LotteryDraw/Employees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/Employees.h -------------------------------------------------------------------------------- /LotteryDraw/LotteryDraw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/LotteryDraw.rc -------------------------------------------------------------------------------- /LotteryDraw/LotteryDraw.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/LotteryDraw.vcproj -------------------------------------------------------------------------------- /LotteryDraw/MainUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/MainUi.cpp -------------------------------------------------------------------------------- /LotteryDraw/MainUi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/MainUi.h -------------------------------------------------------------------------------- /LotteryDraw/MiscUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/MiscUtil.cpp -------------------------------------------------------------------------------- /LotteryDraw/MiscUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/MiscUtil.h -------------------------------------------------------------------------------- /LotteryDraw/ResultUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/ResultUi.cpp -------------------------------------------------------------------------------- /LotteryDraw/ResultUi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/ResultUi.h -------------------------------------------------------------------------------- /LotteryDraw/UiUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/UiUtil.cpp -------------------------------------------------------------------------------- /LotteryDraw/UiUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/UiUtil.h -------------------------------------------------------------------------------- /LotteryDraw/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/main.cpp -------------------------------------------------------------------------------- /LotteryDraw/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/resource.h -------------------------------------------------------------------------------- /LotteryDraw/resource/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/resource/main.ico -------------------------------------------------------------------------------- /LotteryDraw/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/stdafx.cpp -------------------------------------------------------------------------------- /LotteryDraw/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/stdafx.h -------------------------------------------------------------------------------- /LotteryDraw/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/LotteryDraw/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/README.md -------------------------------------------------------------------------------- /UIEditor/Editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/Editor.cpp -------------------------------------------------------------------------------- /UIEditor/Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/Editor.h -------------------------------------------------------------------------------- /UIEditor/EditorUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/EditorUtil.cpp -------------------------------------------------------------------------------- /UIEditor/EditorUtil.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace EditorUtil 4 | { 5 | bool Execute(LPCTSTR commandLine); 6 | }; 7 | -------------------------------------------------------------------------------- /UIEditor/PromptUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/PromptUI.cpp -------------------------------------------------------------------------------- /UIEditor/PromptUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/PromptUI.h -------------------------------------------------------------------------------- /UIEditor/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/ReadMe.txt -------------------------------------------------------------------------------- /UIEditor/ScintillaWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/ScintillaWnd.cpp -------------------------------------------------------------------------------- /UIEditor/ScintillaWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/ScintillaWnd.h -------------------------------------------------------------------------------- /UIEditor/UIEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/UIEditor.cpp -------------------------------------------------------------------------------- /UIEditor/UIEditor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/UIEditor.ico -------------------------------------------------------------------------------- /UIEditor/UIEditor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/UIEditor.rc -------------------------------------------------------------------------------- /UIEditor/UIEditor.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/UIEditor.vcproj -------------------------------------------------------------------------------- /UIEditor/Utf8File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/Utf8File.cpp -------------------------------------------------------------------------------- /UIEditor/Utf8File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/Utf8File.h -------------------------------------------------------------------------------- /UIEditor/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/resource.h -------------------------------------------------------------------------------- /UIEditor/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/stdafx.cpp -------------------------------------------------------------------------------- /UIEditor/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/stdafx.h -------------------------------------------------------------------------------- /UIEditor/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIEditor/targetver.h -------------------------------------------------------------------------------- /UIMocker/Mocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIMocker/Mocker.cpp -------------------------------------------------------------------------------- /UIMocker/Mocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIMocker/Mocker.h -------------------------------------------------------------------------------- /UIMocker/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIMocker/ReadMe.txt -------------------------------------------------------------------------------- /UIMocker/UIMocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIMocker/UIMocker.cpp -------------------------------------------------------------------------------- /UIMocker/UIMocker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIMocker/UIMocker.ico -------------------------------------------------------------------------------- /UIMocker/UIMocker.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIMocker/UIMocker.rc -------------------------------------------------------------------------------- /UIMocker/UIMocker.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIMocker/UIMocker.vcproj -------------------------------------------------------------------------------- /UIMocker/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIMocker/resource.h -------------------------------------------------------------------------------- /UIMocker/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIMocker/stdafx.cpp -------------------------------------------------------------------------------- /UIMocker/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIMocker/stdafx.h -------------------------------------------------------------------------------- /UIMocker/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/UIMocker/targetver.h -------------------------------------------------------------------------------- /WeChat/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/Config.cpp -------------------------------------------------------------------------------- /WeChat/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/Config.h -------------------------------------------------------------------------------- /WeChat/EmotionUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/EmotionUi.cpp -------------------------------------------------------------------------------- /WeChat/EmotionUi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/EmotionUi.h -------------------------------------------------------------------------------- /WeChat/HttpUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/HttpUtil.cpp -------------------------------------------------------------------------------- /WeChat/HttpUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/HttpUtil.h -------------------------------------------------------------------------------- /WeChat/ImageLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/ImageLoader.cpp -------------------------------------------------------------------------------- /WeChat/ImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/ImageLoader.h -------------------------------------------------------------------------------- /WeChat/JsonUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/JsonUtil.cpp -------------------------------------------------------------------------------- /WeChat/JsonUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/JsonUtil.h -------------------------------------------------------------------------------- /WeChat/Locker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/Locker.cpp -------------------------------------------------------------------------------- /WeChat/Locker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/Locker.h -------------------------------------------------------------------------------- /WeChat/LoginUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/LoginUi.cpp -------------------------------------------------------------------------------- /WeChat/LoginUi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/LoginUi.h -------------------------------------------------------------------------------- /WeChat/MainUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/MainUi.cpp -------------------------------------------------------------------------------- /WeChat/MainUi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/MainUi.h -------------------------------------------------------------------------------- /WeChat/MiscUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/MiscUtil.cpp -------------------------------------------------------------------------------- /WeChat/MiscUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/MiscUtil.h -------------------------------------------------------------------------------- /WeChat/UiUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/UiUtil.cpp -------------------------------------------------------------------------------- /WeChat/UiUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/UiUtil.h -------------------------------------------------------------------------------- /WeChat/WeChat.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/WeChat.rc -------------------------------------------------------------------------------- /WeChat/WeChat.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/WeChat.vcproj -------------------------------------------------------------------------------- /WeChat/WeChatLogic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/WeChatLogic.cpp -------------------------------------------------------------------------------- /WeChat/WeChatLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/WeChatLogic.h -------------------------------------------------------------------------------- /WeChat/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/main.cpp -------------------------------------------------------------------------------- /WeChat/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/main.ico -------------------------------------------------------------------------------- /WeChat/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/resource.h -------------------------------------------------------------------------------- /WeChat/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/stdafx.cpp -------------------------------------------------------------------------------- /WeChat/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/stdafx.h -------------------------------------------------------------------------------- /WeChat/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/WeChat/targetver.h -------------------------------------------------------------------------------- /autotest/AutoTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/AutoTest.cpp -------------------------------------------------------------------------------- /autotest/AutoTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/AutoTest.vcproj -------------------------------------------------------------------------------- /autotest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/ReadMe.txt -------------------------------------------------------------------------------- /autotest/TestArrayT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestArrayT.h -------------------------------------------------------------------------------- /autotest/TestBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestBuffer.h -------------------------------------------------------------------------------- /autotest/TestCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestCore.h -------------------------------------------------------------------------------- /autotest/TestData/FileMapping/1.txt: -------------------------------------------------------------------------------- 1 | 1234567890 -------------------------------------------------------------------------------- /autotest/TestData/FileUtil/1.txt: -------------------------------------------------------------------------------- 1 | 1234567890 -------------------------------------------------------------------------------- /autotest/TestData/Zip/Data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestData/Zip/Data.zip -------------------------------------------------------------------------------- /autotest/TestData/Zip/Data/1/11.txt: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /autotest/TestData/Zip/Data/1/11/111.txt: -------------------------------------------------------------------------------- 1 | 111 -------------------------------------------------------------------------------- /autotest/TestData/Zip/Data/2/22.txt: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /autotest/TestData/Zip/Data/2/22/222.txt: -------------------------------------------------------------------------------- 1 | 222 -------------------------------------------------------------------------------- /autotest/TestData/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestData/images/button.png -------------------------------------------------------------------------------- /autotest/TestData/resource/package/data/data.txt: -------------------------------------------------------------------------------- 1 | 789 -------------------------------------------------------------------------------- /autotest/TestData/resource/package/data/txt/123.txt: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /autotest/TestData/resource/package/data/txt/456.txt: -------------------------------------------------------------------------------- 1 | 456 -------------------------------------------------------------------------------- /autotest/TestData/resource/package/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestData/resource/package/package.xml -------------------------------------------------------------------------------- /autotest/TestDataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestDataTypes.h -------------------------------------------------------------------------------- /autotest/TestDelayedRelease.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestDelayedRelease.h -------------------------------------------------------------------------------- /autotest/TestEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestEvent.h -------------------------------------------------------------------------------- /autotest/TestFileMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestFileMapping.h -------------------------------------------------------------------------------- /autotest/TestFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestFileSystem.h -------------------------------------------------------------------------------- /autotest/TestFileUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestFileUtil.h -------------------------------------------------------------------------------- /autotest/TestFrameBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestFrameBase.h -------------------------------------------------------------------------------- /autotest/TestFrameBaseParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestFrameBaseParser.h -------------------------------------------------------------------------------- /autotest/TestFrameParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestFrameParser.h -------------------------------------------------------------------------------- /autotest/TestGdiUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestGdiUtil.h -------------------------------------------------------------------------------- /autotest/TestListT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestListT.h -------------------------------------------------------------------------------- /autotest/TestModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestModule.h -------------------------------------------------------------------------------- /autotest/TestMsgLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestMsgLoop.h -------------------------------------------------------------------------------- /autotest/TestReflect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestReflect.h -------------------------------------------------------------------------------- /autotest/TestString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestString.h -------------------------------------------------------------------------------- /autotest/TestStringBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestStringBundle.h -------------------------------------------------------------------------------- /autotest/TestTimerSrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestTimerSrv.h -------------------------------------------------------------------------------- /autotest/TestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestUtil.h -------------------------------------------------------------------------------- /autotest/TestWindowBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestWindowBase.h -------------------------------------------------------------------------------- /autotest/TestXmlDataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestXmlDataReader.h -------------------------------------------------------------------------------- /autotest/TestZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/TestZip.h -------------------------------------------------------------------------------- /autotest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/stdafx.cpp -------------------------------------------------------------------------------- /autotest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/stdafx.h -------------------------------------------------------------------------------- /autotest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/autotest/targetver.h -------------------------------------------------------------------------------- /imgviewer/FileAssoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/FileAssoc.cpp -------------------------------------------------------------------------------- /imgviewer/FileAssoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/FileAssoc.h -------------------------------------------------------------------------------- /imgviewer/MapFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/MapFile.h -------------------------------------------------------------------------------- /imgviewer/NFileFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/NFileFinder.cpp -------------------------------------------------------------------------------- /imgviewer/NFileFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/NFileFinder.h -------------------------------------------------------------------------------- /imgviewer/ProcUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/ProcUtil.cpp -------------------------------------------------------------------------------- /imgviewer/ProcUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/ProcUtil.h -------------------------------------------------------------------------------- /imgviewer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/ReadMe.txt -------------------------------------------------------------------------------- /imgviewer/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/Registry.cpp -------------------------------------------------------------------------------- /imgviewer/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/Registry.h -------------------------------------------------------------------------------- /imgviewer/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/Resource.h -------------------------------------------------------------------------------- /imgviewer/ViewerData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/ViewerData.h -------------------------------------------------------------------------------- /imgviewer/imgviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/imgviewer.cpp -------------------------------------------------------------------------------- /imgviewer/imgviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/imgviewer.h -------------------------------------------------------------------------------- /imgviewer/imgviewer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/imgviewer.ico -------------------------------------------------------------------------------- /imgviewer/imgviewer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/imgviewer.rc -------------------------------------------------------------------------------- /imgviewer/imgviewer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/imgviewer.vcproj -------------------------------------------------------------------------------- /imgviewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/main.cpp -------------------------------------------------------------------------------- /imgviewer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/stdafx.cpp -------------------------------------------------------------------------------- /imgviewer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/stdafx.h -------------------------------------------------------------------------------- /imgviewer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/imgviewer/targetver.h -------------------------------------------------------------------------------- /nui.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui.sln -------------------------------------------------------------------------------- /nui/NUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/NUI.h -------------------------------------------------------------------------------- /nui/NUI.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/NUI.vcproj -------------------------------------------------------------------------------- /nui/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ReadMe.txt -------------------------------------------------------------------------------- /nui/base/BaseObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/BaseObj.h -------------------------------------------------------------------------------- /nui/base/DataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/DataTypes.h -------------------------------------------------------------------------------- /nui/base/FastDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/FastDelegate.h -------------------------------------------------------------------------------- /nui/base/NAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/NAssert.h -------------------------------------------------------------------------------- /nui/base/NAutoPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/NAutoPtr.h -------------------------------------------------------------------------------- /nui/base/NCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/NCore.h -------------------------------------------------------------------------------- /nui/base/NHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/NHolder.h -------------------------------------------------------------------------------- /nui/base/NInstPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/NInstPtr.h -------------------------------------------------------------------------------- /nui/base/NMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/NMacro.h -------------------------------------------------------------------------------- /nui/base/NMemTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/NMemTool.h -------------------------------------------------------------------------------- /nui/base/NReflect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/NReflect.h -------------------------------------------------------------------------------- /nui/base/NString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/NString.h -------------------------------------------------------------------------------- /nui/base/NThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/NThread.h -------------------------------------------------------------------------------- /nui/base/implement/BaseObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/implement/BaseObj.cpp -------------------------------------------------------------------------------- /nui/base/implement/DataTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/implement/DataTypes.cpp -------------------------------------------------------------------------------- /nui/base/implement/DelayedReleaser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/implement/DelayedReleaser.cpp -------------------------------------------------------------------------------- /nui/base/implement/DelayedReleaser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/implement/DelayedReleaser.h -------------------------------------------------------------------------------- /nui/base/implement/MemRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/implement/MemRecorder.cpp -------------------------------------------------------------------------------- /nui/base/implement/MemRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/implement/MemRecorder.h -------------------------------------------------------------------------------- /nui/base/implement/NAssert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/implement/NAssert.cpp -------------------------------------------------------------------------------- /nui/base/implement/NCoreImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/implement/NCoreImpl.cpp -------------------------------------------------------------------------------- /nui/base/implement/NCoreImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/implement/NCoreImpl.h -------------------------------------------------------------------------------- /nui/base/implement/NHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/implement/NHolder.cpp -------------------------------------------------------------------------------- /nui/base/implement/NReflect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/implement/NReflect.cpp -------------------------------------------------------------------------------- /nui/base/implement/NString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/implement/NString.cpp -------------------------------------------------------------------------------- /nui/base/implement/NThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/implement/NThread.cpp -------------------------------------------------------------------------------- /nui/base/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/base/noncopyable.h -------------------------------------------------------------------------------- /nui/data/NArrayT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/NArrayT.h -------------------------------------------------------------------------------- /nui/data/NBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/NBuffer.h -------------------------------------------------------------------------------- /nui/data/NDataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/NDataReader.h -------------------------------------------------------------------------------- /nui/data/NFileMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/NFileMapping.h -------------------------------------------------------------------------------- /nui/data/NFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/NFileSystem.h -------------------------------------------------------------------------------- /nui/data/NIconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/NIconv.h -------------------------------------------------------------------------------- /nui/data/NListT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/NListT.h -------------------------------------------------------------------------------- /nui/data/NModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/NModule.h -------------------------------------------------------------------------------- /nui/data/NStringBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/NStringBundle.h -------------------------------------------------------------------------------- /nui/data/NZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/NZip.h -------------------------------------------------------------------------------- /nui/data/implement/NBufferImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NBufferImpl.cpp -------------------------------------------------------------------------------- /nui/data/implement/NBufferImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NBufferImpl.h -------------------------------------------------------------------------------- /nui/data/implement/NDataReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NDataReader.cpp -------------------------------------------------------------------------------- /nui/data/implement/NFileMappingImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NFileMappingImpl.cpp -------------------------------------------------------------------------------- /nui/data/implement/NFileMappingImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NFileMappingImpl.h -------------------------------------------------------------------------------- /nui/data/implement/NFileSystemImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NFileSystemImpl.cpp -------------------------------------------------------------------------------- /nui/data/implement/NFileSystemImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NFileSystemImpl.h -------------------------------------------------------------------------------- /nui/data/implement/NIconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NIconv.cpp -------------------------------------------------------------------------------- /nui/data/implement/NModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NModule.cpp -------------------------------------------------------------------------------- /nui/data/implement/NPackFileSystemImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NPackFileSystemImpl.cpp -------------------------------------------------------------------------------- /nui/data/implement/NPackFileSystemImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NPackFileSystemImpl.h -------------------------------------------------------------------------------- /nui/data/implement/NPackageFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NPackageFile.cpp -------------------------------------------------------------------------------- /nui/data/implement/NPackageFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NPackageFile.h -------------------------------------------------------------------------------- /nui/data/implement/NRealFileSystemImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NRealFileSystemImpl.cpp -------------------------------------------------------------------------------- /nui/data/implement/NRealFileSystemImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NRealFileSystemImpl.h -------------------------------------------------------------------------------- /nui/data/implement/NStringBundleImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NStringBundleImpl.cpp -------------------------------------------------------------------------------- /nui/data/implement/NStringBundleImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NStringBundleImpl.h -------------------------------------------------------------------------------- /nui/data/implement/NZipImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NZipImpl.cpp -------------------------------------------------------------------------------- /nui/data/implement/NZipImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/NZipImpl.h -------------------------------------------------------------------------------- /nui/data/implement/XmlDataReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/XmlDataReader.cpp -------------------------------------------------------------------------------- /nui/data/implement/XmlDataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/data/implement/XmlDataReader.h -------------------------------------------------------------------------------- /nui/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/dllmain.cpp -------------------------------------------------------------------------------- /nui/parser/NParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/NParser.h -------------------------------------------------------------------------------- /nui/parser/implement/BaseParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/BaseParser.h -------------------------------------------------------------------------------- /nui/parser/implement/ButtonParserImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/ButtonParserImpl.cpp -------------------------------------------------------------------------------- /nui/parser/implement/ButtonParserImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/ButtonParserImpl.h -------------------------------------------------------------------------------- /nui/parser/implement/CheckBoxParserImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/CheckBoxParserImpl.cpp -------------------------------------------------------------------------------- /nui/parser/implement/CheckBoxParserImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/CheckBoxParserImpl.h -------------------------------------------------------------------------------- /nui/parser/implement/EditParserImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/EditParserImpl.cpp -------------------------------------------------------------------------------- /nui/parser/implement/EditParserImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/EditParserImpl.h -------------------------------------------------------------------------------- /nui/parser/implement/FrameParserImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/FrameParserImpl.cpp -------------------------------------------------------------------------------- /nui/parser/implement/FrameParserImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/FrameParserImpl.h -------------------------------------------------------------------------------- /nui/parser/implement/ImageParserImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/ImageParserImpl.cpp -------------------------------------------------------------------------------- /nui/parser/implement/ImageParserImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/ImageParserImpl.h -------------------------------------------------------------------------------- /nui/parser/implement/LabelParserImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/LabelParserImpl.cpp -------------------------------------------------------------------------------- /nui/parser/implement/LabelParserImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/LabelParserImpl.h -------------------------------------------------------------------------------- /nui/parser/implement/LayoutParserImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/LayoutParserImpl.cpp -------------------------------------------------------------------------------- /nui/parser/implement/LayoutParserImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/LayoutParserImpl.h -------------------------------------------------------------------------------- /nui/parser/implement/LinkParserImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/LinkParserImpl.cpp -------------------------------------------------------------------------------- /nui/parser/implement/LinkParserImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/LinkParserImpl.h -------------------------------------------------------------------------------- /nui/parser/implement/NParserImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/NParserImpl.cpp -------------------------------------------------------------------------------- /nui/parser/implement/NParserImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/NParserImpl.h -------------------------------------------------------------------------------- /nui/parser/implement/NativeParserImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/NativeParserImpl.cpp -------------------------------------------------------------------------------- /nui/parser/implement/NativeParserImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/NativeParserImpl.h -------------------------------------------------------------------------------- /nui/parser/implement/ParserUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/ParserUtil.cpp -------------------------------------------------------------------------------- /nui/parser/implement/ParserUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/ParserUtil.h -------------------------------------------------------------------------------- /nui/parser/implement/RadioBoxParserImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/RadioBoxParserImpl.cpp -------------------------------------------------------------------------------- /nui/parser/implement/RadioBoxParserImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/parser/implement/RadioBoxParserImpl.h -------------------------------------------------------------------------------- /nui/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/stdafx.cpp -------------------------------------------------------------------------------- /nui/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/stdafx.h -------------------------------------------------------------------------------- /nui/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/targetver.h -------------------------------------------------------------------------------- /nui/ui/NButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NButton.h -------------------------------------------------------------------------------- /nui/ui/NCheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NCheckBox.h -------------------------------------------------------------------------------- /nui/ui/NCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NCursor.h -------------------------------------------------------------------------------- /nui/ui/NDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NDraw.h -------------------------------------------------------------------------------- /nui/ui/NEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NEdit.h -------------------------------------------------------------------------------- /nui/ui/NEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NEvent.h -------------------------------------------------------------------------------- /nui/ui/NFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NFont.h -------------------------------------------------------------------------------- /nui/ui/NFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NFrame.h -------------------------------------------------------------------------------- /nui/ui/NFrameBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NFrameBase.h -------------------------------------------------------------------------------- /nui/ui/NHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NHeader.h -------------------------------------------------------------------------------- /nui/ui/NImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NImage.h -------------------------------------------------------------------------------- /nui/ui/NImageDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NImageDraw.h -------------------------------------------------------------------------------- /nui/ui/NLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NLabel.h -------------------------------------------------------------------------------- /nui/ui/NLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NLayout.h -------------------------------------------------------------------------------- /nui/ui/NLayoutArranger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NLayoutArranger.h -------------------------------------------------------------------------------- /nui/ui/NLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NLink.h -------------------------------------------------------------------------------- /nui/ui/NList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NList.h -------------------------------------------------------------------------------- /nui/ui/NMsgLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NMsgLoop.h -------------------------------------------------------------------------------- /nui/ui/NNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NNative.h -------------------------------------------------------------------------------- /nui/ui/NRadioBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NRadioBox.h -------------------------------------------------------------------------------- /nui/ui/NRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NRender.h -------------------------------------------------------------------------------- /nui/ui/NRenderClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NRenderClip.h -------------------------------------------------------------------------------- /nui/ui/NRenderDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NRenderDef.h -------------------------------------------------------------------------------- /nui/ui/NResourceLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NResourceLoader.h -------------------------------------------------------------------------------- /nui/ui/NScroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NScroll.h -------------------------------------------------------------------------------- /nui/ui/NShapeDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NShapeDraw.h -------------------------------------------------------------------------------- /nui/ui/NTextAttr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NTextAttr.h -------------------------------------------------------------------------------- /nui/ui/NTimerSrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NTimerSrv.h -------------------------------------------------------------------------------- /nui/ui/NUiBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NUiBus.h -------------------------------------------------------------------------------- /nui/ui/NUiProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NUiProc.h -------------------------------------------------------------------------------- /nui/ui/NWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NWindow.h -------------------------------------------------------------------------------- /nui/ui/NWindowBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/NWindowBase.h -------------------------------------------------------------------------------- /nui/ui/UiDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/UiDef.h -------------------------------------------------------------------------------- /nui/ui/implement/BaseImageDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/BaseImageDraw.cpp -------------------------------------------------------------------------------- /nui/ui/implement/BaseImageDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/BaseImageDraw.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/AlphaDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/AlphaDC.cpp -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/AlphaDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/AlphaDC.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiCursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiCursor.cpp -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiCursor.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiFont.cpp -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiFont.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiImageDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiImageDraw.cpp -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiImageDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiImageDraw.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiObjMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiObjMgr.cpp -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiObjMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiObjMgr.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiRender.cpp -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiRender.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiResourceLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiResourceLoader.cpp -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiResourceLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiResourceLoader.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiShapeDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiShapeDraw.cpp -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiShapeDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiShapeDraw.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiTextAttr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiTextAttr.cpp -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiTextAttr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiTextAttr.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiUtil.cpp -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/GdiUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/GdiUtil.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/ImageDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/ImageDC.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/MemDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/MemDC.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/SSE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/SSE.cpp -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/SSE.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/StreamImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/StreamImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/StreamImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/StreamImpl.h -------------------------------------------------------------------------------- /nui/ui/implement/Gdi/TempDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/Gdi/TempDC.h -------------------------------------------------------------------------------- /nui/ui/implement/NBrush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NBrush.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NButtonImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NButtonImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NCheckBoxImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NCheckBoxImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NEditImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NEditImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NEvent.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NFrameBaseImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NFrameBaseImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NFrameImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NFrameImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NHeaderImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NHeaderImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NHorzLayoutArranger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NHorzLayoutArranger.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NHorzLayoutArranger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NHorzLayoutArranger.h -------------------------------------------------------------------------------- /nui/ui/implement/NImageImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NImageImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NLabelImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NLabelImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NLayoutImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NLayoutImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NLinkImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NLinkImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NListImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NListImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NMsgLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NMsgLoop.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NNativeImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NNativeImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NRadioBoxImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NRadioBoxImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NScrollImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NScrollImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NShapeDrawImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NShapeDrawImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NTileLayoutArranger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NTileLayoutArranger.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NTileLayoutArranger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NTileLayoutArranger.h -------------------------------------------------------------------------------- /nui/ui/implement/NTimerSrvImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NTimerSrvImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NTimerSrvImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NTimerSrvImpl.h -------------------------------------------------------------------------------- /nui/ui/implement/NUiBus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NUiBus.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NUiProcImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NUiProcImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NUiProcImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NUiProcImpl.h -------------------------------------------------------------------------------- /nui/ui/implement/NVertLayoutArranger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NVertLayoutArranger.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NVertLayoutArranger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NVertLayoutArranger.h -------------------------------------------------------------------------------- /nui/ui/implement/NWindowBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NWindowBase.cpp -------------------------------------------------------------------------------- /nui/ui/implement/NWindowImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/NWindowImpl.cpp -------------------------------------------------------------------------------- /nui/ui/implement/UiUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/UiUtil.cpp -------------------------------------------------------------------------------- /nui/ui/implement/UiUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/UiUtil.h -------------------------------------------------------------------------------- /nui/ui/implement/WindowDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/WindowDef.h -------------------------------------------------------------------------------- /nui/ui/implement/WindowMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/WindowMap.cpp -------------------------------------------------------------------------------- /nui/ui/implement/WindowMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/WindowMap.h -------------------------------------------------------------------------------- /nui/ui/implement/WindowUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/WindowUtil.cpp -------------------------------------------------------------------------------- /nui/ui/implement/WindowUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/ui/implement/WindowUtil.h -------------------------------------------------------------------------------- /nui/util/NDiagnose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/util/NDiagnose.h -------------------------------------------------------------------------------- /nui/util/NFileUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/util/NFileUtil.h -------------------------------------------------------------------------------- /nui/util/NMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/util/NMisc.h -------------------------------------------------------------------------------- /nui/util/NShellUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/util/NShellUtil.h -------------------------------------------------------------------------------- /nui/util/implement/NFileUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/util/implement/NFileUtil.cpp -------------------------------------------------------------------------------- /nui/util/implement/NShellUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/nui/util/implement/NShellUtil.cpp -------------------------------------------------------------------------------- /thirdparty/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/Readme.txt -------------------------------------------------------------------------------- /thirdparty/Scintilla/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/Scintilla/License.txt -------------------------------------------------------------------------------- /thirdparty/Scintilla/SciLexer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/Scintilla/SciLexer.dll -------------------------------------------------------------------------------- /thirdparty/Scintilla/SciLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/Scintilla/SciLexer.h -------------------------------------------------------------------------------- /thirdparty/Scintilla/Sci_Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/Scintilla/Sci_Position.h -------------------------------------------------------------------------------- /thirdparty/Scintilla/Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/Scintilla/Scintilla.h -------------------------------------------------------------------------------- /thirdparty/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/CHANGES -------------------------------------------------------------------------------- /thirdparty/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /thirdparty/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/LICENSE -------------------------------------------------------------------------------- /thirdparty/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/Makefile.am -------------------------------------------------------------------------------- /thirdparty/gtest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/Makefile.in -------------------------------------------------------------------------------- /thirdparty/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/README -------------------------------------------------------------------------------- /thirdparty/gtest/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/aclocal.m4 -------------------------------------------------------------------------------- /thirdparty/gtest/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/build-aux/config.guess -------------------------------------------------------------------------------- /thirdparty/gtest/build-aux/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/build-aux/config.h.in -------------------------------------------------------------------------------- /thirdparty/gtest/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/build-aux/config.sub -------------------------------------------------------------------------------- /thirdparty/gtest/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/build-aux/depcomp -------------------------------------------------------------------------------- /thirdparty/gtest/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/build-aux/install-sh -------------------------------------------------------------------------------- /thirdparty/gtest/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/build-aux/ltmain.sh -------------------------------------------------------------------------------- /thirdparty/gtest/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/build-aux/missing -------------------------------------------------------------------------------- /thirdparty/gtest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /thirdparty/gtest/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/codegear/gtest.cbproj -------------------------------------------------------------------------------- /thirdparty/gtest/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/codegear/gtest.groupproj -------------------------------------------------------------------------------- /thirdparty/gtest/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/codegear/gtest_all.cc -------------------------------------------------------------------------------- /thirdparty/gtest/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/codegear/gtest_link.cc -------------------------------------------------------------------------------- /thirdparty/gtest/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /thirdparty/gtest/codegear/gtest_unittest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/codegear/gtest_unittest.cbproj -------------------------------------------------------------------------------- /thirdparty/gtest/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/configure -------------------------------------------------------------------------------- /thirdparty/gtest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/configure.ac -------------------------------------------------------------------------------- /thirdparty/gtest/fused-src/gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/fused-src/gtest/gtest-all.cc -------------------------------------------------------------------------------- /thirdparty/gtest/fused-src/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/fused-src/gtest/gtest.h -------------------------------------------------------------------------------- /thirdparty/gtest/fused-src/gtest/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/fused-src/gtest/gtest_main.cc -------------------------------------------------------------------------------- /thirdparty/gtest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /thirdparty/gtest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /thirdparty/gtest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /thirdparty/gtest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /thirdparty/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /thirdparty/gtest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /thirdparty/gtest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /thirdparty/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /thirdparty/gtest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /thirdparty/gtest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /thirdparty/gtest/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /thirdparty/gtest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/m4/gtest.m4 -------------------------------------------------------------------------------- /thirdparty/gtest/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/m4/libtool.m4 -------------------------------------------------------------------------------- /thirdparty/gtest/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/m4/ltoptions.m4 -------------------------------------------------------------------------------- /thirdparty/gtest/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/m4/ltsugar.m4 -------------------------------------------------------------------------------- /thirdparty/gtest/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/m4/ltversion.m4 -------------------------------------------------------------------------------- /thirdparty/gtest/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /thirdparty/gtest/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/make/Makefile -------------------------------------------------------------------------------- /thirdparty/gtest/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/msvc/gtest-md.sln -------------------------------------------------------------------------------- /thirdparty/gtest/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /thirdparty/gtest/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/msvc/gtest.sln -------------------------------------------------------------------------------- /thirdparty/gtest/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/msvc/gtest.vcproj -------------------------------------------------------------------------------- /thirdparty/gtest/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /thirdparty/gtest/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /thirdparty/gtest/msvc/gtest_prod_test-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/msvc/gtest_prod_test-md.vcproj -------------------------------------------------------------------------------- /thirdparty/gtest/msvc/gtest_prod_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/msvc/gtest_prod_test.vcproj -------------------------------------------------------------------------------- /thirdparty/gtest/msvc/gtest_unittest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/msvc/gtest_unittest-md.vcproj -------------------------------------------------------------------------------- /thirdparty/gtest/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /thirdparty/gtest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/prime_tables.h -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample1.cc -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample1.h -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample2.cc -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample2.h -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample3-inl.h -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample4.cc -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample4.h -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /thirdparty/gtest/scripts/gen_gtest_pred_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/scripts/gen_gtest_pred_impl.py -------------------------------------------------------------------------------- /thirdparty/gtest/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/scripts/gtest-config.in -------------------------------------------------------------------------------- /thirdparty/gtest/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/scripts/pump.py -------------------------------------------------------------------------------- /thirdparty/gtest/scripts/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/scripts/test/Makefile -------------------------------------------------------------------------------- /thirdparty/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /thirdparty/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /thirdparty/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /thirdparty/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /thirdparty/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /thirdparty/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /thirdparty/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/src/gtest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-death-test_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-death-test_ex_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-death-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-death-test_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-filepath_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-filepath_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-linked_ptr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-linked_ptr_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-listener_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-listener_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-message_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-options_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-param-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-param-test2_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-param-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-param-test_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-param-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-param-test_test.h -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-port_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-printers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-printers_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-test-part_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-test-part_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_color_test.py -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_env_var_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_env_var_test_.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_filter_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_filter_unittest.py -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_filter_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_filter_unittest_.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_help_test.py -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_list_tests_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_list_tests_unittest.py -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_no_test_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_no_test_unittest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_output_test.py -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_pred_impl_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_pred_impl_unittest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_premature_exit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_premature_exit_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_shuffle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_shuffle_test.py -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_shuffle_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_shuffle_test_.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_sole_header_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_sole_header_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_test_utils.py -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_uninitialized_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_uninitialized_test.py -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_uninitialized_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_uninitialized_test_.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_xml_outfile1_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_xml_outfile1_test_.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_xml_outfile2_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_xml_outfile2_test_.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_xml_outfiles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_xml_outfiles_test.py -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_xml_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_xml_output_unittest.py -------------------------------------------------------------------------------- /thirdparty/gtest/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /thirdparty/gtest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/production.cc -------------------------------------------------------------------------------- /thirdparty/gtest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/test/production.h -------------------------------------------------------------------------------- /thirdparty/gtest/xcode/Config/General.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/xcode/Config/General.xcconfig -------------------------------------------------------------------------------- /thirdparty/gtest/xcode/Config/TestTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/xcode/Config/TestTarget.xcconfig -------------------------------------------------------------------------------- /thirdparty/gtest/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /thirdparty/gtest/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /thirdparty/gtest/xcode/Scripts/versiongenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/gtest/xcode/Scripts/versiongenerate.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/AUTHORS: -------------------------------------------------------------------------------- 1 | Baptiste Lepilleur 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/LICENSE -------------------------------------------------------------------------------- /thirdparty/jsoncpp/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/NEWS.txt -------------------------------------------------------------------------------- /thirdparty/jsoncpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/README.txt -------------------------------------------------------------------------------- /thirdparty/jsoncpp/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/SConstruct -------------------------------------------------------------------------------- /thirdparty/jsoncpp/amalgamate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/amalgamate.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/devtools/__init__.py: -------------------------------------------------------------------------------- 1 | # module -------------------------------------------------------------------------------- /thirdparty/jsoncpp/devtools/antglob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/devtools/antglob.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/devtools/fixeol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/devtools/fixeol.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/devtools/licenseupdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/devtools/licenseupdater.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/devtools/tarball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/devtools/tarball.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/doc/doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/doc/doxyfile.in -------------------------------------------------------------------------------- /thirdparty/jsoncpp/doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/doc/footer.html -------------------------------------------------------------------------------- /thirdparty/jsoncpp/doc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/doc/header.html -------------------------------------------------------------------------------- /thirdparty/jsoncpp/doc/jsoncpp.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/doc/jsoncpp.dox -------------------------------------------------------------------------------- /thirdparty/jsoncpp/doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/doc/readme.txt -------------------------------------------------------------------------------- /thirdparty/jsoncpp/doc/roadmap.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/doc/roadmap.dox -------------------------------------------------------------------------------- /thirdparty/jsoncpp/doxybuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/doxybuild.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/include/json/autolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/include/json/autolink.h -------------------------------------------------------------------------------- /thirdparty/jsoncpp/include/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/include/json/config.h -------------------------------------------------------------------------------- /thirdparty/jsoncpp/include/json/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/include/json/features.h -------------------------------------------------------------------------------- /thirdparty/jsoncpp/include/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/include/json/forwards.h -------------------------------------------------------------------------------- /thirdparty/jsoncpp/include/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/include/json/json.h -------------------------------------------------------------------------------- /thirdparty/jsoncpp/include/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/include/json/reader.h -------------------------------------------------------------------------------- /thirdparty/jsoncpp/include/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/include/json/value.h -------------------------------------------------------------------------------- /thirdparty/jsoncpp/include/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/include/json/writer.h -------------------------------------------------------------------------------- /thirdparty/jsoncpp/jsoncpp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/jsoncpp.vcproj -------------------------------------------------------------------------------- /thirdparty/jsoncpp/makefiles/vs71/jsoncpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/makefiles/vs71/jsoncpp.sln -------------------------------------------------------------------------------- /thirdparty/jsoncpp/makefiles/vs71/jsontest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/makefiles/vs71/jsontest.vcproj -------------------------------------------------------------------------------- /thirdparty/jsoncpp/makefiles/vs71/lib_json.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/makefiles/vs71/lib_json.vcproj -------------------------------------------------------------------------------- /thirdparty/jsoncpp/makerelease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/makerelease.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/scons-tools/globtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/scons-tools/globtool.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/scons-tools/srcdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/scons-tools/srcdist.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/scons-tools/substinfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/scons-tools/substinfile.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/scons-tools/targz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/scons-tools/targz.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/src/jsontestrunner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/src/jsontestrunner/main.cpp -------------------------------------------------------------------------------- /thirdparty/jsoncpp/src/jsontestrunner/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/src/jsontestrunner/sconscript -------------------------------------------------------------------------------- /thirdparty/jsoncpp/src/lib_json/json_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/src/lib_json/json_reader.cpp -------------------------------------------------------------------------------- /thirdparty/jsoncpp/src/lib_json/json_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/src/lib_json/json_tool.h -------------------------------------------------------------------------------- /thirdparty/jsoncpp/src/lib_json/json_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/src/lib_json/json_value.cpp -------------------------------------------------------------------------------- /thirdparty/jsoncpp/src/lib_json/json_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/src/lib_json/json_writer.cpp -------------------------------------------------------------------------------- /thirdparty/jsoncpp/src/lib_json/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/src/lib_json/sconscript -------------------------------------------------------------------------------- /thirdparty/jsoncpp/src/test_lib_json/jsontest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/src/test_lib_json/jsontest.cpp -------------------------------------------------------------------------------- /thirdparty/jsoncpp/src/test_lib_json/jsontest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/src/test_lib_json/jsontest.h -------------------------------------------------------------------------------- /thirdparty/jsoncpp/src/test_lib_json/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/src/test_lib_json/main.cpp -------------------------------------------------------------------------------- /thirdparty/jsoncpp/src/test_lib_json/sconscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/src/test_lib_json/sconscript -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/cleantests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/cleantests.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/fail_test_array_01.json: -------------------------------------------------------------------------------- 1 | [ 1 2 3] 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_array_01.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_array_01.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_array_02.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | .[0]=1 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_array_02.json: -------------------------------------------------------------------------------- 1 | [1] 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_array_03.json: -------------------------------------------------------------------------------- 1 | [ 1, 2 , 3,4,5] 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_array_04.json: -------------------------------------------------------------------------------- 1 | [1, "abc" , 12.3, -4] 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_array_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/data/test_array_05.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_array_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/data/test_array_06.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_01.expected: -------------------------------------------------------------------------------- 1 | .=123456789 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_01.json: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_02.expected: -------------------------------------------------------------------------------- 1 | .=-123456789 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_02.json: -------------------------------------------------------------------------------- 1 | -0123456789 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_03.expected: -------------------------------------------------------------------------------- 1 | .=1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_03.json: -------------------------------------------------------------------------------- 1 | 1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_04.expected: -------------------------------------------------------------------------------- 1 | .="abcdef" 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_04.json: -------------------------------------------------------------------------------- 1 | "abcdef" 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_05.expected: -------------------------------------------------------------------------------- 1 | .=null 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_05.json: -------------------------------------------------------------------------------- 1 | null 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_06.expected: -------------------------------------------------------------------------------- 1 | .=true 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_06.json: -------------------------------------------------------------------------------- 1 | true 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_07.expected: -------------------------------------------------------------------------------- 1 | .=false 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_07.json: -------------------------------------------------------------------------------- 1 | false 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_08.expected: -------------------------------------------------------------------------------- 1 | .=null 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_08.json: -------------------------------------------------------------------------------- 1 | // C++ style comment 2 | null 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_09.expected: -------------------------------------------------------------------------------- 1 | .=null 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_basic_09.json: -------------------------------------------------------------------------------- 1 | /* C style comment 2 | */ 3 | null 4 | 5 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_comment_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/data/test_comment_01.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_complex_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/data/test_complex_01.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_01.expected: -------------------------------------------------------------------------------- 1 | .=2147483647 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_01.json: -------------------------------------------------------------------------------- 1 | // Max signed integer 2 | 2147483647 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_02.expected: -------------------------------------------------------------------------------- 1 | .=-2147483648 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_02.json: -------------------------------------------------------------------------------- 1 | // Min signed integer 2 | -2147483648 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_03.expected: -------------------------------------------------------------------------------- 1 | .=4294967295 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_03.json: -------------------------------------------------------------------------------- 1 | // Max unsigned integer 2 | 4294967295 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_04.expected: -------------------------------------------------------------------------------- 1 | .=0 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_04.json: -------------------------------------------------------------------------------- 1 | // Min unsigned integer 2 | 0 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_05.expected: -------------------------------------------------------------------------------- 1 | .=1 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_05.json: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_06_64bits.expected: -------------------------------------------------------------------------------- 1 | .=9223372036854775808 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_06_64bits.json: -------------------------------------------------------------------------------- 1 | 9223372036854775808 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_07_64bits.expected: -------------------------------------------------------------------------------- 1 | .=-9223372036854775808 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_07_64bits.json: -------------------------------------------------------------------------------- 1 | -9223372036854775808 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_08_64bits.expected: -------------------------------------------------------------------------------- 1 | .=18446744073709551615 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_integer_08_64bits.json: -------------------------------------------------------------------------------- 1 | 18446744073709551615 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_large_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/data/test_large_01.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_object_01.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_object_01.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_object_02.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .count=1234 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_object_02.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234 } 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_object_03.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .attribute="random" 3 | .count=1234 4 | .name="test" 5 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_object_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/data/test_object_03.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_object_04.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .=1234 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_object_04.json: -------------------------------------------------------------------------------- 1 | { 2 | "" : 1234 3 | } 4 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_preserve_comment_01.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .first=1 3 | .second=2 4 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_real_01.expected: -------------------------------------------------------------------------------- 1 | .=8589934592 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_real_01.json: -------------------------------------------------------------------------------- 1 | // 2^33 => out of integer range, switch to double 2 | 8589934592 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_real_02.expected: -------------------------------------------------------------------------------- 1 | .=-4294967295 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_real_02.json: -------------------------------------------------------------------------------- 1 | // -2^32 => out of signed integer range, switch to double 2 | -4294967295 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_real_03.expected: -------------------------------------------------------------------------------- 1 | .=-4294967295 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_real_03.json: -------------------------------------------------------------------------------- 1 | // -2^32 => out of signed integer range, switch to double 2 | -4294967295 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_real_04.expected: -------------------------------------------------------------------------------- 1 | .=1.2345678 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_real_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/data/test_real_04.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_real_05.expected: -------------------------------------------------------------------------------- 1 | .=1234567.8 2 | 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_real_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/data/test_real_05.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_real_06.expected: -------------------------------------------------------------------------------- 1 | .=-1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_real_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/data/test_real_06.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_real_07.expected: -------------------------------------------------------------------------------- 1 | .=-1234567.8 2 | 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_real_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/data/test_real_07.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_string_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/data/test_string_02.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_string_03.expected: -------------------------------------------------------------------------------- 1 | .="http://jsoncpp.sourceforge.net/" -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_string_03.json: -------------------------------------------------------------------------------- 1 | "http:\/\/jsoncpp.sourceforge.net\/" 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_string_unicode_01.expected: -------------------------------------------------------------------------------- 1 | .="a" 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_string_unicode_01.json: -------------------------------------------------------------------------------- 1 | "\u0061" -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_string_unicode_02.expected: -------------------------------------------------------------------------------- 1 | .="¢" 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_string_unicode_02.json: -------------------------------------------------------------------------------- 1 | "\u00A2" -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_string_unicode_03.expected: -------------------------------------------------------------------------------- 1 | .="€" 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_string_unicode_03.json: -------------------------------------------------------------------------------- 1 | "\u20AC" -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_string_unicode_04.expected: -------------------------------------------------------------------------------- 1 | .="𝄞" 2 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_string_unicode_04.json: -------------------------------------------------------------------------------- 1 | "\uD834\uDD1E" -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_string_unicode_05.expected: -------------------------------------------------------------------------------- 1 | .="Zażółć gęślą jaźń" 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/data/test_string_unicode_05.json: -------------------------------------------------------------------------------- 1 | "Zażółć gęślą jaźń" -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/generate_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/generate_expected.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/jsonchecker/fail10.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/jsonchecker/fail18.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/jsonchecker/fail26.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/jsonchecker/fail3.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/pass1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/jsonchecker/pass1.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/pass2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/jsonchecker/pass2.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/pass3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/jsonchecker/pass3.json -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/jsonchecker/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/jsonchecker/readme.txt -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/pyjsontestrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/pyjsontestrunner.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/runjsontests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/runjsontests.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/test/rununittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/jsoncpp/test/rununittests.py -------------------------------------------------------------------------------- /thirdparty/jsoncpp/version: -------------------------------------------------------------------------------- 1 | 0.6.0-rc2 -------------------------------------------------------------------------------- /thirdparty/thirdparty.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/thirdparty.sln -------------------------------------------------------------------------------- /thirdparty/tinyxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/Makefile -------------------------------------------------------------------------------- /thirdparty/tinyxml/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/changes.txt -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/annotated.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlAttribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlAttribute.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlAttribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlAttribute.png -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlBase.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlBase.png -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlComment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlComment.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlComment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlComment.png -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlDocument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlDocument.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlDocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlDocument.png -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlElement.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlElement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlElement.png -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlHandle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlHandle.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlNode.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlNode.png -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlPrinter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlPrinter.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlPrinter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlPrinter.png -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlText.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlText.png -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlUnknown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlUnknown.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlUnknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlUnknown.png -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlVisitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlVisitor.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classTiXmlVisitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classTiXmlVisitor.png -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/classes.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/deprecated.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/doxygen.css -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/doxygen.png -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/files.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x63.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x64.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x65.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x66.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x67.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x69.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x6c.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x6e.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x6f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x6f.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x70.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x71.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x71.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x72.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x73.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x74.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x75.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x75.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_0x76.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_enum.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x63.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x64.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x65.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x66.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x67.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x69.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x6c.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x6e.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x70.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x71.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x71.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x72.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x73.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x74.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x75.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x75.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_func_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_func_0x76.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_rela.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_rela.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/functions_vars.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/hierarchy.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/index.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/pages.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/tab_b.gif -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/tab_l.gif -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/tab_r.gif -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/tabs.css -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/tinystr_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/tinystr_8h_source.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/tinyxml_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/tinyxml_8h_source.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/docs/tutorial0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/docs/tutorial0.html -------------------------------------------------------------------------------- /thirdparty/tinyxml/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/readme.txt -------------------------------------------------------------------------------- /thirdparty/tinyxml/tinyXmlTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/tinyXmlTest.vcxproj -------------------------------------------------------------------------------- /thirdparty/tinyxml/tinyXmlTestSTL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/tinyXmlTestSTL.vcxproj -------------------------------------------------------------------------------- /thirdparty/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /thirdparty/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/tinystr.h -------------------------------------------------------------------------------- /thirdparty/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /thirdparty/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /thirdparty/tinyxml/tinyxml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/tinyxml.sln -------------------------------------------------------------------------------- /thirdparty/tinyxml/tinyxml.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/tinyxml.vcproj -------------------------------------------------------------------------------- /thirdparty/tinyxml/tinyxmlSTL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/tinyxmlSTL.vcxproj -------------------------------------------------------------------------------- /thirdparty/tinyxml/tinyxml_lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/tinyxml_lib.vcxproj -------------------------------------------------------------------------------- /thirdparty/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /thirdparty/tinyxml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /thirdparty/tinyxml/utf8test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/utf8test.gif -------------------------------------------------------------------------------- /thirdparty/tinyxml/utf8test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/utf8test.xml -------------------------------------------------------------------------------- /thirdparty/tinyxml/utf8testverify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/utf8testverify.xml -------------------------------------------------------------------------------- /thirdparty/tinyxml/xmltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/tinyxml/xmltest.cpp -------------------------------------------------------------------------------- /thirdparty/vsprops/LibDebug.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/vsprops/LibDebug.vsprops -------------------------------------------------------------------------------- /thirdparty/vsprops/LibRelease.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/vsprops/LibRelease.vsprops -------------------------------------------------------------------------------- /thirdparty/zip/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/zip/ReadMe.txt -------------------------------------------------------------------------------- /thirdparty/zip/XUnzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/zip/XUnzip.cpp -------------------------------------------------------------------------------- /thirdparty/zip/XUnzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/zip/XUnzip.h -------------------------------------------------------------------------------- /thirdparty/zip/XZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/zip/XZip.cpp -------------------------------------------------------------------------------- /thirdparty/zip/XZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/zip/XZip.h -------------------------------------------------------------------------------- /thirdparty/zip/xtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/zip/xtrace.h -------------------------------------------------------------------------------- /thirdparty/zip/zip.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/thirdparty/zip/zip.vcproj -------------------------------------------------------------------------------- /uidata/ImageEditor/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/ImageEditor/package.xml -------------------------------------------------------------------------------- /uidata/ImageEditor/skin/common/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/ImageEditor/skin/common/button.png -------------------------------------------------------------------------------- /uidata/ImageEditor/skin/common/checkBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/ImageEditor/skin/common/checkBox.png -------------------------------------------------------------------------------- /uidata/ImageEditor/skin/common/radioBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/ImageEditor/skin/common/radioBox.png -------------------------------------------------------------------------------- /uidata/ImageEditor/skin/images/nineimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/ImageEditor/skin/images/nineimage.png -------------------------------------------------------------------------------- /uidata/ImageEditor/string/2052/Common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/ImageEditor/string/2052/Common.xml -------------------------------------------------------------------------------- /uidata/ImageEditor/string/2052/Main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/ImageEditor/string/2052/Main.xml -------------------------------------------------------------------------------- /uidata/ImageEditor/style/MainUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/ImageEditor/style/MainUI.xml -------------------------------------------------------------------------------- /uidata/ImageEditor/style/sys_default_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/ImageEditor/style/sys_default_style.xml -------------------------------------------------------------------------------- /uidata/UIEditor/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/package.xml -------------------------------------------------------------------------------- /uidata/UIEditor/skin/common/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/skin/common/button.png -------------------------------------------------------------------------------- /uidata/UIEditor/skin/common/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/skin/common/header.png -------------------------------------------------------------------------------- /uidata/UIEditor/skin/common/headerArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/skin/common/headerArrow.png -------------------------------------------------------------------------------- /uidata/UIEditor/skin/common/horzScrollBkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/skin/common/horzScrollBkg.png -------------------------------------------------------------------------------- /uidata/UIEditor/skin/common/horzScrollBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/skin/common/horzScrollBlock.png -------------------------------------------------------------------------------- /uidata/UIEditor/skin/common/horzScrollSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/skin/common/horzScrollSlider.png -------------------------------------------------------------------------------- /uidata/UIEditor/skin/common/sys_close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/skin/common/sys_close_button.png -------------------------------------------------------------------------------- /uidata/UIEditor/skin/common/sys_max_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/skin/common/sys_max_button.png -------------------------------------------------------------------------------- /uidata/UIEditor/skin/common/sys_min_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/skin/common/sys_min_button.png -------------------------------------------------------------------------------- /uidata/UIEditor/skin/common/vertScrollBkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/skin/common/vertScrollBkg.png -------------------------------------------------------------------------------- /uidata/UIEditor/skin/common/vertScrollBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/skin/common/vertScrollBlock.png -------------------------------------------------------------------------------- /uidata/UIEditor/skin/common/vertScrollSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/skin/common/vertScrollSlider.png -------------------------------------------------------------------------------- /uidata/UIEditor/string/2052/Common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/string/2052/Common.xml -------------------------------------------------------------------------------- /uidata/UIEditor/string/2052/Main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/string/2052/Main.xml -------------------------------------------------------------------------------- /uidata/UIEditor/style/MainUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/style/MainUI.xml -------------------------------------------------------------------------------- /uidata/UIEditor/style/PromptUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/style/PromptUI.xml -------------------------------------------------------------------------------- /uidata/UIEditor/style/sys_default_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/UIEditor/style/sys_default_style.xml -------------------------------------------------------------------------------- /uidata/WeChat/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/package.xml -------------------------------------------------------------------------------- /uidata/WeChat/skin/common/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/common/button.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/common/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/common/header.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/common/headerArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/common/headerArrow.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/common/horzScrollBkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/common/horzScrollBkg.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/common/horzScrollBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/common/horzScrollBlock.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/common/horzScrollSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/common/horzScrollSlider.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/common/loading.gif -------------------------------------------------------------------------------- /uidata/WeChat/skin/common/sys_close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/common/sys_close_button.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/common/sys_max_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/common/sys_max_button.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/common/sys_min_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/common/sys_min_button.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/common/vertScrollBkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/common/vertScrollBkg.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/common/vertScrollBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/common/vertScrollBlock.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/common/vertScrollSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/common/vertScrollSlider.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/main/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/main/cancel.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/main/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/main/config.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/main/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/main/contact.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/main/contactBkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/main/contactBkg.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/main/emotionTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/main/emotionTab.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/main/emotions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/main/emotions.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/main/fileTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/main/fileTab.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/main/msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/main/msg.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/main/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/main/search.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/main/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/main/send.png -------------------------------------------------------------------------------- /uidata/WeChat/skin/mockup/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/skin/mockup/avatar.png -------------------------------------------------------------------------------- /uidata/WeChat/string/2052/Common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/string/2052/Common.xml -------------------------------------------------------------------------------- /uidata/WeChat/string/2052/LoginUi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/string/2052/LoginUi.xml -------------------------------------------------------------------------------- /uidata/WeChat/string/2052/MainUi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/string/2052/MainUi.xml -------------------------------------------------------------------------------- /uidata/WeChat/style/EmotionUi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/style/EmotionUi.xml -------------------------------------------------------------------------------- /uidata/WeChat/style/LoginUi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/style/LoginUi.xml -------------------------------------------------------------------------------- /uidata/WeChat/style/MainUi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/style/MainUi.xml -------------------------------------------------------------------------------- /uidata/WeChat/style/sys_default_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/WeChat/style/sys_default_style.xml -------------------------------------------------------------------------------- /uidata/uidata/data/data.txt: -------------------------------------------------------------------------------- 1 | 789 -------------------------------------------------------------------------------- /uidata/uidata/data/txt/123.txt: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /uidata/uidata/data/txt/456.txt: -------------------------------------------------------------------------------- 1 | 456 -------------------------------------------------------------------------------- /uidata/uidata/data/xml/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/data/xml/data.xml -------------------------------------------------------------------------------- /uidata/uidata/data/xml/window.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/data/xml/window.xml -------------------------------------------------------------------------------- /uidata/uidata/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/package.xml -------------------------------------------------------------------------------- /uidata/uidata/skin/common/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/common/button.png -------------------------------------------------------------------------------- /uidata/uidata/skin/common/checkBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/common/checkBox.png -------------------------------------------------------------------------------- /uidata/uidata/skin/common/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/common/header.png -------------------------------------------------------------------------------- /uidata/uidata/skin/common/headerArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/common/headerArrow.png -------------------------------------------------------------------------------- /uidata/uidata/skin/common/horzScrollBkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/common/horzScrollBkg.png -------------------------------------------------------------------------------- /uidata/uidata/skin/common/horzScrollBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/common/horzScrollBlock.png -------------------------------------------------------------------------------- /uidata/uidata/skin/common/horzScrollSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/common/horzScrollSlider.png -------------------------------------------------------------------------------- /uidata/uidata/skin/common/radioBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/common/radioBox.png -------------------------------------------------------------------------------- /uidata/uidata/skin/common/sys_close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/common/sys_close_button.png -------------------------------------------------------------------------------- /uidata/uidata/skin/common/sys_max_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/common/sys_max_button.png -------------------------------------------------------------------------------- /uidata/uidata/skin/common/sys_min_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/common/sys_min_button.png -------------------------------------------------------------------------------- /uidata/uidata/skin/common/vertScrollBkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/common/vertScrollBkg.png -------------------------------------------------------------------------------- /uidata/uidata/skin/common/vertScrollBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/common/vertScrollBlock.png -------------------------------------------------------------------------------- /uidata/uidata/skin/common/vertScrollSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/common/vertScrollSlider.png -------------------------------------------------------------------------------- /uidata/uidata/skin/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/images/0.gif -------------------------------------------------------------------------------- /uidata/uidata/skin/images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/images/3.gif -------------------------------------------------------------------------------- /uidata/uidata/skin/images/514540469.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/images/514540469.png -------------------------------------------------------------------------------- /uidata/uidata/skin/images/nineimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/skin/images/nineimage.png -------------------------------------------------------------------------------- /uidata/uidata/string/2052/Common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/string/2052/Common.xml -------------------------------------------------------------------------------- /uidata/uidata/style/AboutUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/style/AboutUI.xml -------------------------------------------------------------------------------- /uidata/uidata/style/LayoutTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/style/LayoutTest.xml -------------------------------------------------------------------------------- /uidata/uidata/style/sys_default_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uidata/uidata/style/sys_default_style.xml -------------------------------------------------------------------------------- /uitest/ControlTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/ControlTest.cpp -------------------------------------------------------------------------------- /uitest/ControlTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/ControlTest.h -------------------------------------------------------------------------------- /uitest/LayoutTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/LayoutTest.cpp -------------------------------------------------------------------------------- /uitest/LayoutTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/LayoutTest.h -------------------------------------------------------------------------------- /uitest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/ReadMe.txt -------------------------------------------------------------------------------- /uitest/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/Resource.h -------------------------------------------------------------------------------- /uitest/TestDrawImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/TestDrawImage.cpp -------------------------------------------------------------------------------- /uitest/TestDrawImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/TestDrawImage.h -------------------------------------------------------------------------------- /uitest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/stdafx.cpp -------------------------------------------------------------------------------- /uitest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/stdafx.h -------------------------------------------------------------------------------- /uitest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/targetver.h -------------------------------------------------------------------------------- /uitest/uitest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/uitest.cpp -------------------------------------------------------------------------------- /uitest/uitest.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /uitest/uitest.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/uitest.ico -------------------------------------------------------------------------------- /uitest/uitest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/uitest.rc -------------------------------------------------------------------------------- /uitest/uitest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/uitest/uitest.vcproj -------------------------------------------------------------------------------- /vsprops/DLLDebug.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/vsprops/DLLDebug.vsprops -------------------------------------------------------------------------------- /vsprops/DLLRelease.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/vsprops/DLLRelease.vsprops -------------------------------------------------------------------------------- /vsprops/ExeDebug.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/vsprops/ExeDebug.vsprops -------------------------------------------------------------------------------- /vsprops/ExeRelease.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/vsprops/ExeRelease.vsprops -------------------------------------------------------------------------------- /vsprops/LibDebug.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/vsprops/LibDebug.vsprops -------------------------------------------------------------------------------- /vsprops/LibRelease.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hufuman/nui/HEAD/vsprops/LibRelease.vsprops --------------------------------------------------------------------------------