├── .clang-format ├── .codecov.yml ├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── scripts │ ├── get_release_notes.py │ └── get_release_version.py ├── stale.yml └── workflows │ └── ccpp.yml ├── .gitignore ├── .gitmodules ├── AUTHORS ├── CHANGELOG.md ├── CHANGELOG.zh-cn.md ├── CODE_OF_CONDUCT.md ├── CODE_OF_CONDUCT.zh-cn.md ├── LICENSE.TXT ├── README ├── README.md ├── README.zh-cn.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── lcui-docs.docs ├── liblcui2-dev.dirs ├── liblcui2-dev.install ├── liblcui2.dirs ├── liblcui2.install ├── rules └── source │ └── format ├── examples ├── browser.jpg ├── fabric.jpg ├── fabric │ ├── README.md │ ├── src │ │ ├── fabric.c │ │ ├── fabric.h │ │ └── main.c │ └── xmake.lua ├── hello │ ├── app │ │ ├── hello.css │ │ └── hello.xml │ ├── src │ │ └── main.c │ └── xmake.lua ├── kantu.jpg ├── todolist.jpg ├── todolist │ ├── app │ │ ├── check.png │ │ ├── delete.png │ │ ├── todolist.css │ │ └── todolist.xml │ ├── src │ │ └── main.c │ └── xmake.lua ├── xmake-requires.lock └── xmake.lua ├── include ├── LCUI.h └── LCUI │ ├── app.h │ ├── base.h │ ├── common.h │ ├── fonts.h │ ├── main.h │ ├── settings.h │ ├── ui.h │ ├── widgets.h │ ├── widgets │ ├── anchor.h │ ├── button.h │ ├── canvas.h │ ├── router_link.h │ ├── router_view.h │ ├── scrollarea.h │ ├── scrollbar.h │ ├── text.h │ ├── textcaret.h │ └── textinput.h │ └── worker.h ├── lib ├── css │ ├── README.md │ ├── include │ │ ├── css.h │ │ └── css │ │ │ ├── common.h │ │ │ ├── computed.h │ │ │ ├── data_types.h │ │ │ ├── keywords.h │ │ │ ├── library.h │ │ │ ├── parser.h │ │ │ ├── properties.h │ │ │ ├── selector.h │ │ │ ├── style_decl.h │ │ │ ├── style_value.h │ │ │ ├── types.h │ │ │ ├── utils.h │ │ │ └── value.h │ ├── src │ │ ├── computed.c │ │ ├── config.h.in │ │ ├── data_types.c │ │ ├── debug.h │ │ ├── dump.c │ │ ├── dump.h │ │ ├── font_face_parser.c │ │ ├── keywords.c │ │ ├── library.c │ │ ├── main.c │ │ ├── parser.c │ │ ├── parser.h │ │ ├── properties.c │ │ ├── properties.h │ │ ├── properties │ │ │ ├── align_content.c │ │ │ ├── align_items.c │ │ │ ├── background.c │ │ │ ├── border.c │ │ │ ├── bottom.c │ │ │ ├── box_shadow.c │ │ │ ├── box_sizing.c │ │ │ ├── color.c │ │ │ ├── content.c │ │ │ ├── display.c │ │ │ ├── flex.c │ │ │ ├── font_family.c │ │ │ ├── font_size.c │ │ │ ├── font_style.c │ │ │ ├── font_weight.c │ │ │ ├── height.c │ │ │ ├── helpers.c │ │ │ ├── helpers.h │ │ │ ├── justify_content.c │ │ │ ├── left.c │ │ │ ├── line_height.c │ │ │ ├── margin.c │ │ │ ├── max_height.c │ │ │ ├── max_width.c │ │ │ ├── min_height.c │ │ │ ├── min_width.c │ │ │ ├── opacity.c │ │ │ ├── padding.c │ │ │ ├── pointer_events.c │ │ │ ├── position.c │ │ │ ├── right.c │ │ │ ├── text_align.c │ │ │ ├── top.c │ │ │ ├── vertical_align.c │ │ │ ├── visibility.c │ │ │ ├── white_space.c │ │ │ ├── width.c │ │ │ ├── word_break.c │ │ │ └── z_index.c │ │ ├── selector.c │ │ ├── style_decl.c │ │ ├── style_parser.c │ │ ├── style_value.c │ │ ├── utils.c │ │ └── value.c │ ├── tests │ │ ├── test.c │ │ ├── test.h │ │ ├── test_css_computed.c │ │ ├── test_css_computed.css │ │ ├── test_css_keywords.c │ │ └── test_css_value.c │ └── xmake.lua ├── ctest │ ├── include │ │ └── ctest.h │ ├── src │ │ └── ctest.c │ └── xmake.lua ├── i18n │ ├── include │ │ └── i18n.h │ ├── src │ │ ├── i18n-dict.c │ │ ├── i18n-private.h │ │ ├── i18n.c │ │ ├── i18n.h.in │ │ └── yaml.c │ ├── tests │ │ ├── locales │ │ │ ├── en.yml │ │ │ └── zh-CN.yml │ │ └── test.c │ └── xmake.lua ├── pandagl │ ├── README.md │ ├── examples │ │ └── cairo │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── README.zh-cn.md │ │ │ ├── output.png │ │ │ ├── src │ │ │ └── main.c │ │ │ └── xmake.lua │ ├── include │ │ ├── pandagl.h │ │ └── pandagl │ │ │ ├── background.h │ │ │ ├── border.h │ │ │ ├── boxshadow.h │ │ │ ├── canvas.h │ │ │ ├── color.h │ │ │ ├── common.h │ │ │ ├── context.h │ │ │ ├── file_reader.h │ │ │ ├── font.h │ │ │ ├── image.h │ │ │ ├── line.h │ │ │ ├── pixel.h │ │ │ ├── rect.h │ │ │ ├── text.h │ │ │ └── types.h │ ├── src │ │ ├── background.c │ │ ├── border.c │ │ ├── boxshadow.c │ │ ├── canvas.c │ │ ├── config.h.in │ │ ├── context.c │ │ ├── file_reader.c │ │ ├── flip.c │ │ ├── font │ │ │ ├── bitmap.c │ │ │ ├── bitmap.h │ │ │ ├── freetype.c │ │ │ ├── freetype.h │ │ │ ├── inconsolata.c │ │ │ ├── inconsolata.h │ │ │ ├── incore.c │ │ │ ├── incore.h │ │ │ ├── library.c │ │ │ └── library.h │ │ ├── image │ │ │ ├── bmp.c │ │ │ ├── bmp_private.h │ │ │ ├── jpeg.c │ │ │ ├── jpeg_private.h │ │ │ ├── png.c │ │ │ ├── png_private.h │ │ │ └── reader.c │ │ ├── line.c │ │ ├── pixel.c │ │ ├── rect.c │ │ ├── text │ │ │ ├── style.c │ │ │ ├── style_tag.c │ │ │ └── text.c │ │ ├── tile.c │ │ └── zoom.c │ ├── test │ │ ├── test.c │ │ ├── test.h │ │ └── test_canvas_mix.c │ └── xmake.lua ├── ptk │ ├── include │ │ ├── ptk.h │ │ └── ptk │ │ │ ├── app.h │ │ │ ├── clipboard.h │ │ │ ├── common.h │ │ │ ├── events.h │ │ │ ├── ime.h │ │ │ ├── main.h │ │ │ ├── steptimer.h │ │ │ ├── types.h │ │ │ ├── win32_main.h │ │ │ └── window.h │ ├── src │ │ ├── app.c │ │ ├── clipboard.c │ │ ├── clipboard.h │ │ ├── config.h.in │ │ ├── events.c │ │ ├── events.h │ │ ├── ime.c │ │ ├── ime.h │ │ ├── linux │ │ │ ├── app.c │ │ │ ├── fbapp.c │ │ │ ├── fbapp.h │ │ │ ├── ime.c │ │ │ ├── keyboard.c │ │ │ ├── keyboard.h │ │ │ ├── mouse.c │ │ │ ├── mouse.h │ │ │ ├── uri.c │ │ │ ├── x11app.c │ │ │ ├── x11app.h │ │ │ ├── x11clipboard.c │ │ │ └── x11clipboard.h │ │ ├── steptimer.c │ │ └── windows │ │ │ ├── uri.c │ │ │ ├── win32app.c │ │ │ ├── win32clipboard.c │ │ │ ├── win32clipboard.h │ │ │ └── win32ime.c │ └── xmake.lua ├── router │ ├── .gitignore │ ├── README.md │ ├── README.zh-cn.md │ ├── include │ │ ├── router.h │ │ └── router │ │ │ ├── common.h │ │ │ ├── config.h │ │ │ ├── history.h │ │ │ ├── location.h │ │ │ ├── matcher.h │ │ │ ├── route.h │ │ │ ├── route_record.h │ │ │ ├── router.h │ │ │ ├── strmap.h │ │ │ ├── types.h │ │ │ ├── utils.h │ │ │ └── version.h │ ├── src │ │ ├── config.c │ │ ├── history.c │ │ ├── location.c │ │ ├── matcher.c │ │ ├── private.h │ │ ├── route.c │ │ ├── route_record.c │ │ ├── router.c │ │ ├── strmap.c │ │ ├── utils.c │ │ └── version.h.in │ ├── tests │ │ └── test.c │ └── xmake.lua ├── thread │ ├── include │ │ └── thread.h │ ├── src │ │ ├── pthread.c │ │ ├── thread.h.in │ │ └── windows.c │ └── xmake.lua ├── ui-cursor │ ├── include │ │ ├── ui_cursor.h │ │ └── ui_cursor │ │ │ └── common.h │ ├── src │ │ ├── config.h.in │ │ └── cursor.c │ └── xmake.lua ├── ui-server │ ├── include │ │ ├── ui_server.h │ │ └── ui_server │ │ │ └── common.h │ ├── src │ │ ├── config.h.in │ │ └── server.c │ └── xmake.lua ├── ui-xml │ ├── include │ │ ├── ui_xml.h │ │ └── ui_xml │ │ │ └── common.h │ ├── src │ │ ├── config.h.in │ │ └── ui_xml.c │ └── xmake.lua ├── ui │ ├── include │ │ ├── ui.h │ │ └── ui │ │ │ ├── base.h │ │ │ ├── common.h │ │ │ ├── css.h │ │ │ ├── events.h │ │ │ ├── hash.h │ │ │ ├── image.h │ │ │ ├── logger.h │ │ │ ├── metrics.h │ │ │ ├── mutation_observer.h │ │ │ ├── prototype.h │ │ │ ├── rect.h │ │ │ ├── style.h │ │ │ ├── text_style.h │ │ │ ├── types.h │ │ │ └── updater.h │ ├── src │ │ ├── config.h.in │ │ ├── ui.c │ │ ├── ui_block_layout.c │ │ ├── ui_block_layout.h │ │ ├── ui_css.c │ │ ├── ui_css.h │ │ ├── ui_debug.c │ │ ├── ui_debug.h │ │ ├── ui_diff.c │ │ ├── ui_diff.h │ │ ├── ui_events.c │ │ ├── ui_events.h │ │ ├── ui_flexbox_layout.c │ │ ├── ui_flexbox_layout.h │ │ ├── ui_image.c │ │ ├── ui_image.h │ │ ├── ui_logger.c │ │ ├── ui_metrics.c │ │ ├── ui_mutation_observer.c │ │ ├── ui_mutation_observer.h │ │ ├── ui_rect.c │ │ ├── ui_renderer.c │ │ ├── ui_resizer.c │ │ ├── ui_resizer.h │ │ ├── ui_root.c │ │ ├── ui_root.h │ │ ├── ui_text_style.c │ │ ├── ui_tree.c │ │ ├── ui_updater.c │ │ ├── ui_updater.h │ │ ├── ui_widget.c │ │ ├── ui_widget.h │ │ ├── ui_widget_attributes.c │ │ ├── ui_widget_attributes.h │ │ ├── ui_widget_background.c │ │ ├── ui_widget_background.h │ │ ├── ui_widget_border.c │ │ ├── ui_widget_border.h │ │ ├── ui_widget_box_shadow.c │ │ ├── ui_widget_box_shadow.h │ │ ├── ui_widget_classes.c │ │ ├── ui_widget_classes.h │ │ ├── ui_widget_hash.c │ │ ├── ui_widget_helper.c │ │ ├── ui_widget_id.c │ │ ├── ui_widget_id.h │ │ ├── ui_widget_layout.c │ │ ├── ui_widget_layout.h │ │ ├── ui_widget_observer.c │ │ ├── ui_widget_observer.h │ │ ├── ui_widget_prototype.c │ │ ├── ui_widget_prototype.h │ │ ├── ui_widget_status.c │ │ ├── ui_widget_status.h │ │ ├── ui_widget_style.c │ │ └── ui_widget_style.h │ └── xmake.lua └── worker │ ├── include │ ├── worker.h │ └── worker │ │ └── common.h │ ├── src │ ├── config.h.in │ └── worker.c │ └── xmake.lua ├── package.json ├── preview.png ├── scripts └── add-copyright.js ├── src ├── config.h.in ├── lcui.c ├── lcui_app.c ├── lcui_fonts.c ├── lcui_settings.c ├── lcui_ui.c ├── lcui_widgets.c ├── lcui_worker.c └── widgets │ ├── anchor.c │ ├── button.c │ ├── canvas.c │ ├── router_link.c │ ├── router_view.c │ ├── scrollarea.c │ ├── scrollbar.c │ ├── text.c │ ├── textcaret.c │ ├── textinput.c │ ├── textstyle.c │ └── textstyle.h ├── tests ├── cases │ ├── test_block_layout.c │ ├── test_clipboard.c │ ├── test_flex_layout.c │ ├── test_font_load.c │ ├── test_image_reader.c │ ├── test_mainloop.c │ ├── test_router.c │ ├── test_scrollbar.c │ ├── test_settings.c │ ├── test_text_resize.c │ ├── test_textinput.c │ ├── test_thread.c │ ├── test_widget_event.c │ ├── test_widget_opacity.c │ ├── test_widget_rect.c │ └── test_xml_parser.c ├── dog.jpg ├── helloworld_uwp │ ├── App.cpp │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── LCUIApp.vcxproj │ ├── LCUIApp.vcxproj.filters │ ├── Package.appxmanifest │ ├── pch.cpp │ └── pch.h ├── include │ └── ctest-custom.h ├── run_tests.c ├── run_tests.h ├── test_block_layout.c ├── test_block_layout.css ├── test_block_layout.html ├── test_block_layout.xml ├── test_border.c ├── test_border.css ├── test_border.html ├── test_border.xml ├── test_box_shadow.c ├── test_box_shadow.css ├── test_box_shadow.html ├── test_box_shadow.xml ├── test_char_render.c ├── test_css_parser.css ├── test_css_parser.xml ├── test_fill_rect.c ├── test_fill_rect_with_rgba.c ├── test_flex_layout.c ├── test_flex_layout.css ├── test_flex_layout.html ├── test_flex_layout.xml ├── test_font_load.css ├── test_font_load.ttf ├── test_image_reader.bmp ├── test_image_reader.jpg ├── test_image_reader.png ├── test_image_scaling_bench.c ├── test_mix_rect_with_opacity.c ├── test_paint_background.c ├── test_paint_border.c ├── test_paint_boxshadow.c ├── test_pixel_manipulation.c ├── test_render.c ├── test_scaling_support.c ├── test_scaling_support.css ├── test_scaling_support.xml ├── test_scrollbar.c ├── test_scrollbar.xml ├── test_string_render.c ├── test_text_resize.c ├── test_touch.c ├── test_widget.c ├── test_widget_opacity.c ├── test_widget_opacity.css ├── test_widget_opacity.xml ├── test_widget_render.c ├── test_xml_parser.nested.xml ├── test_xml_parser.xml └── xmake.lua ├── xmake-requires.lock └── xmake.lua /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.clang-format -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/scripts/get_release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.github/scripts/get_release_notes.py -------------------------------------------------------------------------------- /.github/scripts/get_release_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.github/scripts/get_release_version.py -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ccpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.github/workflows/ccpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/CHANGELOG.zh-cn.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/CODE_OF_CONDUCT.zh-cn.md -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/README.zh-cn.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/lcui-docs.docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /debian/liblcui2-dev.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | usr/include 3 | -------------------------------------------------------------------------------- /debian/liblcui2-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/debian/liblcui2-dev.install -------------------------------------------------------------------------------- /debian/liblcui2.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | -------------------------------------------------------------------------------- /debian/liblcui2.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/debian/liblcui2.install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /examples/browser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/browser.jpg -------------------------------------------------------------------------------- /examples/fabric.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/fabric.jpg -------------------------------------------------------------------------------- /examples/fabric/README.md: -------------------------------------------------------------------------------- 1 | # Fabric 2 | 3 | 基于 LCUI 和 Cario 实现的布料模拟程序。 4 | -------------------------------------------------------------------------------- /examples/fabric/src/fabric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/fabric/src/fabric.c -------------------------------------------------------------------------------- /examples/fabric/src/fabric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/fabric/src/fabric.h -------------------------------------------------------------------------------- /examples/fabric/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/fabric/src/main.c -------------------------------------------------------------------------------- /examples/fabric/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/fabric/xmake.lua -------------------------------------------------------------------------------- /examples/hello/app/hello.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/hello/app/hello.css -------------------------------------------------------------------------------- /examples/hello/app/hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/hello/app/hello.xml -------------------------------------------------------------------------------- /examples/hello/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/hello/src/main.c -------------------------------------------------------------------------------- /examples/hello/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/hello/xmake.lua -------------------------------------------------------------------------------- /examples/kantu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/kantu.jpg -------------------------------------------------------------------------------- /examples/todolist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/todolist.jpg -------------------------------------------------------------------------------- /examples/todolist/app/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/todolist/app/check.png -------------------------------------------------------------------------------- /examples/todolist/app/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/todolist/app/delete.png -------------------------------------------------------------------------------- /examples/todolist/app/todolist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/todolist/app/todolist.css -------------------------------------------------------------------------------- /examples/todolist/app/todolist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/todolist/app/todolist.xml -------------------------------------------------------------------------------- /examples/todolist/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/todolist/src/main.c -------------------------------------------------------------------------------- /examples/todolist/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/todolist/xmake.lua -------------------------------------------------------------------------------- /examples/xmake-requires.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/xmake-requires.lock -------------------------------------------------------------------------------- /examples/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/examples/xmake.lua -------------------------------------------------------------------------------- /include/LCUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI.h -------------------------------------------------------------------------------- /include/LCUI/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/app.h -------------------------------------------------------------------------------- /include/LCUI/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/base.h -------------------------------------------------------------------------------- /include/LCUI/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/common.h -------------------------------------------------------------------------------- /include/LCUI/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/fonts.h -------------------------------------------------------------------------------- /include/LCUI/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/main.h -------------------------------------------------------------------------------- /include/LCUI/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/settings.h -------------------------------------------------------------------------------- /include/LCUI/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/ui.h -------------------------------------------------------------------------------- /include/LCUI/widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/widgets.h -------------------------------------------------------------------------------- /include/LCUI/widgets/anchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/widgets/anchor.h -------------------------------------------------------------------------------- /include/LCUI/widgets/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/widgets/button.h -------------------------------------------------------------------------------- /include/LCUI/widgets/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/widgets/canvas.h -------------------------------------------------------------------------------- /include/LCUI/widgets/router_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/widgets/router_link.h -------------------------------------------------------------------------------- /include/LCUI/widgets/router_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/widgets/router_view.h -------------------------------------------------------------------------------- /include/LCUI/widgets/scrollarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/widgets/scrollarea.h -------------------------------------------------------------------------------- /include/LCUI/widgets/scrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/widgets/scrollbar.h -------------------------------------------------------------------------------- /include/LCUI/widgets/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/widgets/text.h -------------------------------------------------------------------------------- /include/LCUI/widgets/textcaret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/widgets/textcaret.h -------------------------------------------------------------------------------- /include/LCUI/widgets/textinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/widgets/textinput.h -------------------------------------------------------------------------------- /include/LCUI/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/include/LCUI/worker.h -------------------------------------------------------------------------------- /lib/css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/README.md -------------------------------------------------------------------------------- /lib/css/include/css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/include/css.h -------------------------------------------------------------------------------- /lib/css/include/css/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/include/css/common.h -------------------------------------------------------------------------------- /lib/css/include/css/computed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/include/css/computed.h -------------------------------------------------------------------------------- /lib/css/include/css/data_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/include/css/data_types.h -------------------------------------------------------------------------------- /lib/css/include/css/keywords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/include/css/keywords.h -------------------------------------------------------------------------------- /lib/css/include/css/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/include/css/library.h -------------------------------------------------------------------------------- /lib/css/include/css/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/include/css/parser.h -------------------------------------------------------------------------------- /lib/css/include/css/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/include/css/properties.h -------------------------------------------------------------------------------- /lib/css/include/css/selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/include/css/selector.h -------------------------------------------------------------------------------- /lib/css/include/css/style_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/include/css/style_decl.h -------------------------------------------------------------------------------- /lib/css/include/css/style_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/include/css/style_value.h -------------------------------------------------------------------------------- /lib/css/include/css/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/include/css/types.h -------------------------------------------------------------------------------- /lib/css/include/css/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/include/css/utils.h -------------------------------------------------------------------------------- /lib/css/include/css/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/include/css/value.h -------------------------------------------------------------------------------- /lib/css/src/computed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/computed.c -------------------------------------------------------------------------------- /lib/css/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/config.h.in -------------------------------------------------------------------------------- /lib/css/src/data_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/data_types.c -------------------------------------------------------------------------------- /lib/css/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/debug.h -------------------------------------------------------------------------------- /lib/css/src/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/dump.c -------------------------------------------------------------------------------- /lib/css/src/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/dump.h -------------------------------------------------------------------------------- /lib/css/src/font_face_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/font_face_parser.c -------------------------------------------------------------------------------- /lib/css/src/keywords.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/keywords.c -------------------------------------------------------------------------------- /lib/css/src/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/library.c -------------------------------------------------------------------------------- /lib/css/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/main.c -------------------------------------------------------------------------------- /lib/css/src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/parser.c -------------------------------------------------------------------------------- /lib/css/src/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/parser.h -------------------------------------------------------------------------------- /lib/css/src/properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties.c -------------------------------------------------------------------------------- /lib/css/src/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties.h -------------------------------------------------------------------------------- /lib/css/src/properties/align_content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/align_content.c -------------------------------------------------------------------------------- /lib/css/src/properties/align_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/align_items.c -------------------------------------------------------------------------------- /lib/css/src/properties/background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/background.c -------------------------------------------------------------------------------- /lib/css/src/properties/border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/border.c -------------------------------------------------------------------------------- /lib/css/src/properties/bottom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/bottom.c -------------------------------------------------------------------------------- /lib/css/src/properties/box_shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/box_shadow.c -------------------------------------------------------------------------------- /lib/css/src/properties/box_sizing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/box_sizing.c -------------------------------------------------------------------------------- /lib/css/src/properties/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/color.c -------------------------------------------------------------------------------- /lib/css/src/properties/content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/content.c -------------------------------------------------------------------------------- /lib/css/src/properties/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/display.c -------------------------------------------------------------------------------- /lib/css/src/properties/flex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/flex.c -------------------------------------------------------------------------------- /lib/css/src/properties/font_family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/font_family.c -------------------------------------------------------------------------------- /lib/css/src/properties/font_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/font_size.c -------------------------------------------------------------------------------- /lib/css/src/properties/font_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/font_style.c -------------------------------------------------------------------------------- /lib/css/src/properties/font_weight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/font_weight.c -------------------------------------------------------------------------------- /lib/css/src/properties/height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/height.c -------------------------------------------------------------------------------- /lib/css/src/properties/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/helpers.c -------------------------------------------------------------------------------- /lib/css/src/properties/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/helpers.h -------------------------------------------------------------------------------- /lib/css/src/properties/justify_content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/justify_content.c -------------------------------------------------------------------------------- /lib/css/src/properties/left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/left.c -------------------------------------------------------------------------------- /lib/css/src/properties/line_height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/line_height.c -------------------------------------------------------------------------------- /lib/css/src/properties/margin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/margin.c -------------------------------------------------------------------------------- /lib/css/src/properties/max_height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/max_height.c -------------------------------------------------------------------------------- /lib/css/src/properties/max_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/max_width.c -------------------------------------------------------------------------------- /lib/css/src/properties/min_height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/min_height.c -------------------------------------------------------------------------------- /lib/css/src/properties/min_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/min_width.c -------------------------------------------------------------------------------- /lib/css/src/properties/opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/opacity.c -------------------------------------------------------------------------------- /lib/css/src/properties/padding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/padding.c -------------------------------------------------------------------------------- /lib/css/src/properties/pointer_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/pointer_events.c -------------------------------------------------------------------------------- /lib/css/src/properties/position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/position.c -------------------------------------------------------------------------------- /lib/css/src/properties/right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/right.c -------------------------------------------------------------------------------- /lib/css/src/properties/text_align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/text_align.c -------------------------------------------------------------------------------- /lib/css/src/properties/top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/top.c -------------------------------------------------------------------------------- /lib/css/src/properties/vertical_align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/vertical_align.c -------------------------------------------------------------------------------- /lib/css/src/properties/visibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/visibility.c -------------------------------------------------------------------------------- /lib/css/src/properties/white_space.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/white_space.c -------------------------------------------------------------------------------- /lib/css/src/properties/width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/width.c -------------------------------------------------------------------------------- /lib/css/src/properties/word_break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/word_break.c -------------------------------------------------------------------------------- /lib/css/src/properties/z_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/properties/z_index.c -------------------------------------------------------------------------------- /lib/css/src/selector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/selector.c -------------------------------------------------------------------------------- /lib/css/src/style_decl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/style_decl.c -------------------------------------------------------------------------------- /lib/css/src/style_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/style_parser.c -------------------------------------------------------------------------------- /lib/css/src/style_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/style_value.c -------------------------------------------------------------------------------- /lib/css/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/utils.c -------------------------------------------------------------------------------- /lib/css/src/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/src/value.c -------------------------------------------------------------------------------- /lib/css/tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/tests/test.c -------------------------------------------------------------------------------- /lib/css/tests/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/tests/test.h -------------------------------------------------------------------------------- /lib/css/tests/test_css_computed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/tests/test_css_computed.c -------------------------------------------------------------------------------- /lib/css/tests/test_css_computed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/tests/test_css_computed.css -------------------------------------------------------------------------------- /lib/css/tests/test_css_keywords.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/tests/test_css_keywords.c -------------------------------------------------------------------------------- /lib/css/tests/test_css_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/tests/test_css_value.c -------------------------------------------------------------------------------- /lib/css/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/css/xmake.lua -------------------------------------------------------------------------------- /lib/ctest/include/ctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ctest/include/ctest.h -------------------------------------------------------------------------------- /lib/ctest/src/ctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ctest/src/ctest.c -------------------------------------------------------------------------------- /lib/ctest/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ctest/xmake.lua -------------------------------------------------------------------------------- /lib/i18n/include/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/i18n/include/i18n.h -------------------------------------------------------------------------------- /lib/i18n/src/i18n-dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/i18n/src/i18n-dict.c -------------------------------------------------------------------------------- /lib/i18n/src/i18n-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/i18n/src/i18n-private.h -------------------------------------------------------------------------------- /lib/i18n/src/i18n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/i18n/src/i18n.c -------------------------------------------------------------------------------- /lib/i18n/src/i18n.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/i18n/src/i18n.h.in -------------------------------------------------------------------------------- /lib/i18n/src/yaml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/i18n/src/yaml.c -------------------------------------------------------------------------------- /lib/i18n/tests/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/i18n/tests/locales/en.yml -------------------------------------------------------------------------------- /lib/i18n/tests/locales/zh-CN.yml: -------------------------------------------------------------------------------- 1 | name: 中文 2 | button: 3 | ok: 确定 4 | cancel: 取消 5 | -------------------------------------------------------------------------------- /lib/i18n/tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/i18n/tests/test.c -------------------------------------------------------------------------------- /lib/i18n/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/i18n/xmake.lua -------------------------------------------------------------------------------- /lib/pandagl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/README.md -------------------------------------------------------------------------------- /lib/pandagl/examples/cairo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/examples/cairo/.gitignore -------------------------------------------------------------------------------- /lib/pandagl/examples/cairo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/examples/cairo/README.md -------------------------------------------------------------------------------- /lib/pandagl/examples/cairo/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/examples/cairo/README.zh-cn.md -------------------------------------------------------------------------------- /lib/pandagl/examples/cairo/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/examples/cairo/output.png -------------------------------------------------------------------------------- /lib/pandagl/examples/cairo/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/examples/cairo/src/main.c -------------------------------------------------------------------------------- /lib/pandagl/examples/cairo/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/examples/cairo/xmake.lua -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/background.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/border.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/border.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/boxshadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/boxshadow.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/canvas.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/color.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/common.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/context.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/file_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/file_reader.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/font.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/image.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/line.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/pixel.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/rect.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/text.h -------------------------------------------------------------------------------- /lib/pandagl/include/pandagl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/include/pandagl/types.h -------------------------------------------------------------------------------- /lib/pandagl/src/background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/background.c -------------------------------------------------------------------------------- /lib/pandagl/src/border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/border.c -------------------------------------------------------------------------------- /lib/pandagl/src/boxshadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/boxshadow.c -------------------------------------------------------------------------------- /lib/pandagl/src/canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/canvas.c -------------------------------------------------------------------------------- /lib/pandagl/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/config.h.in -------------------------------------------------------------------------------- /lib/pandagl/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/context.c -------------------------------------------------------------------------------- /lib/pandagl/src/file_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/file_reader.c -------------------------------------------------------------------------------- /lib/pandagl/src/flip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/flip.c -------------------------------------------------------------------------------- /lib/pandagl/src/font/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/font/bitmap.c -------------------------------------------------------------------------------- /lib/pandagl/src/font/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/font/bitmap.h -------------------------------------------------------------------------------- /lib/pandagl/src/font/freetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/font/freetype.c -------------------------------------------------------------------------------- /lib/pandagl/src/font/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/font/freetype.h -------------------------------------------------------------------------------- /lib/pandagl/src/font/inconsolata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/font/inconsolata.c -------------------------------------------------------------------------------- /lib/pandagl/src/font/inconsolata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/font/inconsolata.h -------------------------------------------------------------------------------- /lib/pandagl/src/font/incore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/font/incore.c -------------------------------------------------------------------------------- /lib/pandagl/src/font/incore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/font/incore.h -------------------------------------------------------------------------------- /lib/pandagl/src/font/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/font/library.c -------------------------------------------------------------------------------- /lib/pandagl/src/font/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/font/library.h -------------------------------------------------------------------------------- /lib/pandagl/src/image/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/image/bmp.c -------------------------------------------------------------------------------- /lib/pandagl/src/image/bmp_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/image/bmp_private.h -------------------------------------------------------------------------------- /lib/pandagl/src/image/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/image/jpeg.c -------------------------------------------------------------------------------- /lib/pandagl/src/image/jpeg_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/image/jpeg_private.h -------------------------------------------------------------------------------- /lib/pandagl/src/image/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/image/png.c -------------------------------------------------------------------------------- /lib/pandagl/src/image/png_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/image/png_private.h -------------------------------------------------------------------------------- /lib/pandagl/src/image/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/image/reader.c -------------------------------------------------------------------------------- /lib/pandagl/src/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/line.c -------------------------------------------------------------------------------- /lib/pandagl/src/pixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/pixel.c -------------------------------------------------------------------------------- /lib/pandagl/src/rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/rect.c -------------------------------------------------------------------------------- /lib/pandagl/src/text/style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/text/style.c -------------------------------------------------------------------------------- /lib/pandagl/src/text/style_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/text/style_tag.c -------------------------------------------------------------------------------- /lib/pandagl/src/text/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/text/text.c -------------------------------------------------------------------------------- /lib/pandagl/src/tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/tile.c -------------------------------------------------------------------------------- /lib/pandagl/src/zoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/src/zoom.c -------------------------------------------------------------------------------- /lib/pandagl/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/test/test.c -------------------------------------------------------------------------------- /lib/pandagl/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/test/test.h -------------------------------------------------------------------------------- /lib/pandagl/test/test_canvas_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/test/test_canvas_mix.c -------------------------------------------------------------------------------- /lib/pandagl/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/pandagl/xmake.lua -------------------------------------------------------------------------------- /lib/ptk/include/ptk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/include/ptk.h -------------------------------------------------------------------------------- /lib/ptk/include/ptk/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/include/ptk/app.h -------------------------------------------------------------------------------- /lib/ptk/include/ptk/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/include/ptk/clipboard.h -------------------------------------------------------------------------------- /lib/ptk/include/ptk/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/include/ptk/common.h -------------------------------------------------------------------------------- /lib/ptk/include/ptk/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/include/ptk/events.h -------------------------------------------------------------------------------- /lib/ptk/include/ptk/ime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/include/ptk/ime.h -------------------------------------------------------------------------------- /lib/ptk/include/ptk/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/include/ptk/main.h -------------------------------------------------------------------------------- /lib/ptk/include/ptk/steptimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/include/ptk/steptimer.h -------------------------------------------------------------------------------- /lib/ptk/include/ptk/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/include/ptk/types.h -------------------------------------------------------------------------------- /lib/ptk/include/ptk/win32_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/include/ptk/win32_main.h -------------------------------------------------------------------------------- /lib/ptk/include/ptk/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/include/ptk/window.h -------------------------------------------------------------------------------- /lib/ptk/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/app.c -------------------------------------------------------------------------------- /lib/ptk/src/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/clipboard.c -------------------------------------------------------------------------------- /lib/ptk/src/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/clipboard.h -------------------------------------------------------------------------------- /lib/ptk/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/config.h.in -------------------------------------------------------------------------------- /lib/ptk/src/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/events.c -------------------------------------------------------------------------------- /lib/ptk/src/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/events.h -------------------------------------------------------------------------------- /lib/ptk/src/ime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/ime.c -------------------------------------------------------------------------------- /lib/ptk/src/ime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/ime.h -------------------------------------------------------------------------------- /lib/ptk/src/linux/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/linux/app.c -------------------------------------------------------------------------------- /lib/ptk/src/linux/fbapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/linux/fbapp.c -------------------------------------------------------------------------------- /lib/ptk/src/linux/fbapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/linux/fbapp.h -------------------------------------------------------------------------------- /lib/ptk/src/linux/ime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/linux/ime.c -------------------------------------------------------------------------------- /lib/ptk/src/linux/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/linux/keyboard.c -------------------------------------------------------------------------------- /lib/ptk/src/linux/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/linux/keyboard.h -------------------------------------------------------------------------------- /lib/ptk/src/linux/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/linux/mouse.c -------------------------------------------------------------------------------- /lib/ptk/src/linux/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/linux/mouse.h -------------------------------------------------------------------------------- /lib/ptk/src/linux/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/linux/uri.c -------------------------------------------------------------------------------- /lib/ptk/src/linux/x11app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/linux/x11app.c -------------------------------------------------------------------------------- /lib/ptk/src/linux/x11app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/linux/x11app.h -------------------------------------------------------------------------------- /lib/ptk/src/linux/x11clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/linux/x11clipboard.c -------------------------------------------------------------------------------- /lib/ptk/src/linux/x11clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/linux/x11clipboard.h -------------------------------------------------------------------------------- /lib/ptk/src/steptimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/steptimer.c -------------------------------------------------------------------------------- /lib/ptk/src/windows/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/windows/uri.c -------------------------------------------------------------------------------- /lib/ptk/src/windows/win32app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/windows/win32app.c -------------------------------------------------------------------------------- /lib/ptk/src/windows/win32clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/windows/win32clipboard.c -------------------------------------------------------------------------------- /lib/ptk/src/windows/win32clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/windows/win32clipboard.h -------------------------------------------------------------------------------- /lib/ptk/src/windows/win32ime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/src/windows/win32ime.c -------------------------------------------------------------------------------- /lib/ptk/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ptk/xmake.lua -------------------------------------------------------------------------------- /lib/router/.gitignore: -------------------------------------------------------------------------------- 1 | !config.h -------------------------------------------------------------------------------- /lib/router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/README.md -------------------------------------------------------------------------------- /lib/router/README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/README.zh-cn.md -------------------------------------------------------------------------------- /lib/router/include/router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/include/router.h -------------------------------------------------------------------------------- /lib/router/include/router/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/include/router/common.h -------------------------------------------------------------------------------- /lib/router/include/router/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/include/router/config.h -------------------------------------------------------------------------------- /lib/router/include/router/history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/include/router/history.h -------------------------------------------------------------------------------- /lib/router/include/router/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/include/router/location.h -------------------------------------------------------------------------------- /lib/router/include/router/matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/include/router/matcher.h -------------------------------------------------------------------------------- /lib/router/include/router/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/include/router/route.h -------------------------------------------------------------------------------- /lib/router/include/router/route_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/include/router/route_record.h -------------------------------------------------------------------------------- /lib/router/include/router/router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/include/router/router.h -------------------------------------------------------------------------------- /lib/router/include/router/strmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/include/router/strmap.h -------------------------------------------------------------------------------- /lib/router/include/router/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/include/router/types.h -------------------------------------------------------------------------------- /lib/router/include/router/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/include/router/utils.h -------------------------------------------------------------------------------- /lib/router/include/router/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/include/router/version.h -------------------------------------------------------------------------------- /lib/router/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/src/config.c -------------------------------------------------------------------------------- /lib/router/src/history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/src/history.c -------------------------------------------------------------------------------- /lib/router/src/location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/src/location.c -------------------------------------------------------------------------------- /lib/router/src/matcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/src/matcher.c -------------------------------------------------------------------------------- /lib/router/src/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/src/private.h -------------------------------------------------------------------------------- /lib/router/src/route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/src/route.c -------------------------------------------------------------------------------- /lib/router/src/route_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/src/route_record.c -------------------------------------------------------------------------------- /lib/router/src/router.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/src/router.c -------------------------------------------------------------------------------- /lib/router/src/strmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/src/strmap.c -------------------------------------------------------------------------------- /lib/router/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/src/utils.c -------------------------------------------------------------------------------- /lib/router/src/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/src/version.h.in -------------------------------------------------------------------------------- /lib/router/tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/tests/test.c -------------------------------------------------------------------------------- /lib/router/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/router/xmake.lua -------------------------------------------------------------------------------- /lib/thread/include/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/thread/include/thread.h -------------------------------------------------------------------------------- /lib/thread/src/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/thread/src/pthread.c -------------------------------------------------------------------------------- /lib/thread/src/thread.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/thread/src/thread.h.in -------------------------------------------------------------------------------- /lib/thread/src/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/thread/src/windows.c -------------------------------------------------------------------------------- /lib/thread/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/thread/xmake.lua -------------------------------------------------------------------------------- /lib/ui-cursor/include/ui_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-cursor/include/ui_cursor.h -------------------------------------------------------------------------------- /lib/ui-cursor/include/ui_cursor/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-cursor/include/ui_cursor/common.h -------------------------------------------------------------------------------- /lib/ui-cursor/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-cursor/src/config.h.in -------------------------------------------------------------------------------- /lib/ui-cursor/src/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-cursor/src/cursor.c -------------------------------------------------------------------------------- /lib/ui-cursor/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-cursor/xmake.lua -------------------------------------------------------------------------------- /lib/ui-server/include/ui_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-server/include/ui_server.h -------------------------------------------------------------------------------- /lib/ui-server/include/ui_server/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-server/include/ui_server/common.h -------------------------------------------------------------------------------- /lib/ui-server/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-server/src/config.h.in -------------------------------------------------------------------------------- /lib/ui-server/src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-server/src/server.c -------------------------------------------------------------------------------- /lib/ui-server/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-server/xmake.lua -------------------------------------------------------------------------------- /lib/ui-xml/include/ui_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-xml/include/ui_xml.h -------------------------------------------------------------------------------- /lib/ui-xml/include/ui_xml/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-xml/include/ui_xml/common.h -------------------------------------------------------------------------------- /lib/ui-xml/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-xml/src/config.h.in -------------------------------------------------------------------------------- /lib/ui-xml/src/ui_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-xml/src/ui_xml.c -------------------------------------------------------------------------------- /lib/ui-xml/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui-xml/xmake.lua -------------------------------------------------------------------------------- /lib/ui/include/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui.h -------------------------------------------------------------------------------- /lib/ui/include/ui/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/base.h -------------------------------------------------------------------------------- /lib/ui/include/ui/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/common.h -------------------------------------------------------------------------------- /lib/ui/include/ui/css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/css.h -------------------------------------------------------------------------------- /lib/ui/include/ui/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/events.h -------------------------------------------------------------------------------- /lib/ui/include/ui/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/hash.h -------------------------------------------------------------------------------- /lib/ui/include/ui/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/image.h -------------------------------------------------------------------------------- /lib/ui/include/ui/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/logger.h -------------------------------------------------------------------------------- /lib/ui/include/ui/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/metrics.h -------------------------------------------------------------------------------- /lib/ui/include/ui/mutation_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/mutation_observer.h -------------------------------------------------------------------------------- /lib/ui/include/ui/prototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/prototype.h -------------------------------------------------------------------------------- /lib/ui/include/ui/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/rect.h -------------------------------------------------------------------------------- /lib/ui/include/ui/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/style.h -------------------------------------------------------------------------------- /lib/ui/include/ui/text_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/text_style.h -------------------------------------------------------------------------------- /lib/ui/include/ui/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/types.h -------------------------------------------------------------------------------- /lib/ui/include/ui/updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/include/ui/updater.h -------------------------------------------------------------------------------- /lib/ui/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/config.h.in -------------------------------------------------------------------------------- /lib/ui/src/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui.c -------------------------------------------------------------------------------- /lib/ui/src/ui_block_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_block_layout.c -------------------------------------------------------------------------------- /lib/ui/src/ui_block_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_block_layout.h -------------------------------------------------------------------------------- /lib/ui/src/ui_css.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_css.c -------------------------------------------------------------------------------- /lib/ui/src/ui_css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_css.h -------------------------------------------------------------------------------- /lib/ui/src/ui_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_debug.c -------------------------------------------------------------------------------- /lib/ui/src/ui_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_debug.h -------------------------------------------------------------------------------- /lib/ui/src/ui_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_diff.c -------------------------------------------------------------------------------- /lib/ui/src/ui_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_diff.h -------------------------------------------------------------------------------- /lib/ui/src/ui_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_events.c -------------------------------------------------------------------------------- /lib/ui/src/ui_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_events.h -------------------------------------------------------------------------------- /lib/ui/src/ui_flexbox_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_flexbox_layout.c -------------------------------------------------------------------------------- /lib/ui/src/ui_flexbox_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_flexbox_layout.h -------------------------------------------------------------------------------- /lib/ui/src/ui_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_image.c -------------------------------------------------------------------------------- /lib/ui/src/ui_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_image.h -------------------------------------------------------------------------------- /lib/ui/src/ui_logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_logger.c -------------------------------------------------------------------------------- /lib/ui/src/ui_metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_metrics.c -------------------------------------------------------------------------------- /lib/ui/src/ui_mutation_observer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_mutation_observer.c -------------------------------------------------------------------------------- /lib/ui/src/ui_mutation_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_mutation_observer.h -------------------------------------------------------------------------------- /lib/ui/src/ui_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_rect.c -------------------------------------------------------------------------------- /lib/ui/src/ui_renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_renderer.c -------------------------------------------------------------------------------- /lib/ui/src/ui_resizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_resizer.c -------------------------------------------------------------------------------- /lib/ui/src/ui_resizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_resizer.h -------------------------------------------------------------------------------- /lib/ui/src/ui_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_root.c -------------------------------------------------------------------------------- /lib/ui/src/ui_root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_root.h -------------------------------------------------------------------------------- /lib/ui/src/ui_text_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_text_style.c -------------------------------------------------------------------------------- /lib/ui/src/ui_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_tree.c -------------------------------------------------------------------------------- /lib/ui/src/ui_updater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_updater.c -------------------------------------------------------------------------------- /lib/ui/src/ui_updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_updater.h -------------------------------------------------------------------------------- /lib/ui/src/ui_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget.c -------------------------------------------------------------------------------- /lib/ui/src/ui_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget.h -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_attributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_attributes.c -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_attributes.h -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_background.c -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_background.h -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_border.c -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_border.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_border.h -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_box_shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_box_shadow.c -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_box_shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_box_shadow.h -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_classes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_classes.c -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_classes.h -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_hash.c -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_helper.c -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_id.c -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_id.h -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_layout.c -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_layout.h -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_observer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_observer.c -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_observer.h -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_prototype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_prototype.c -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_prototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_prototype.h -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_status.c -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_status.h -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_style.c -------------------------------------------------------------------------------- /lib/ui/src/ui_widget_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/src/ui_widget_style.h -------------------------------------------------------------------------------- /lib/ui/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/ui/xmake.lua -------------------------------------------------------------------------------- /lib/worker/include/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/worker/include/worker.h -------------------------------------------------------------------------------- /lib/worker/include/worker/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/worker/include/worker/common.h -------------------------------------------------------------------------------- /lib/worker/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/worker/src/config.h.in -------------------------------------------------------------------------------- /lib/worker/src/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/worker/src/worker.c -------------------------------------------------------------------------------- /lib/worker/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/lib/worker/xmake.lua -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/package.json -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/preview.png -------------------------------------------------------------------------------- /scripts/add-copyright.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/scripts/add-copyright.js -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/lcui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/lcui.c -------------------------------------------------------------------------------- /src/lcui_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/lcui_app.c -------------------------------------------------------------------------------- /src/lcui_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/lcui_fonts.c -------------------------------------------------------------------------------- /src/lcui_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/lcui_settings.c -------------------------------------------------------------------------------- /src/lcui_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/lcui_ui.c -------------------------------------------------------------------------------- /src/lcui_widgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/lcui_widgets.c -------------------------------------------------------------------------------- /src/lcui_worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/lcui_worker.c -------------------------------------------------------------------------------- /src/widgets/anchor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/widgets/anchor.c -------------------------------------------------------------------------------- /src/widgets/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/widgets/button.c -------------------------------------------------------------------------------- /src/widgets/canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/widgets/canvas.c -------------------------------------------------------------------------------- /src/widgets/router_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/widgets/router_link.c -------------------------------------------------------------------------------- /src/widgets/router_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/widgets/router_view.c -------------------------------------------------------------------------------- /src/widgets/scrollarea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/widgets/scrollarea.c -------------------------------------------------------------------------------- /src/widgets/scrollbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/widgets/scrollbar.c -------------------------------------------------------------------------------- /src/widgets/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/widgets/text.c -------------------------------------------------------------------------------- /src/widgets/textcaret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/widgets/textcaret.c -------------------------------------------------------------------------------- /src/widgets/textinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/widgets/textinput.c -------------------------------------------------------------------------------- /src/widgets/textstyle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/widgets/textstyle.c -------------------------------------------------------------------------------- /src/widgets/textstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/src/widgets/textstyle.h -------------------------------------------------------------------------------- /tests/cases/test_block_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_block_layout.c -------------------------------------------------------------------------------- /tests/cases/test_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_clipboard.c -------------------------------------------------------------------------------- /tests/cases/test_flex_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_flex_layout.c -------------------------------------------------------------------------------- /tests/cases/test_font_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_font_load.c -------------------------------------------------------------------------------- /tests/cases/test_image_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_image_reader.c -------------------------------------------------------------------------------- /tests/cases/test_mainloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_mainloop.c -------------------------------------------------------------------------------- /tests/cases/test_router.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_router.c -------------------------------------------------------------------------------- /tests/cases/test_scrollbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_scrollbar.c -------------------------------------------------------------------------------- /tests/cases/test_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_settings.c -------------------------------------------------------------------------------- /tests/cases/test_text_resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_text_resize.c -------------------------------------------------------------------------------- /tests/cases/test_textinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_textinput.c -------------------------------------------------------------------------------- /tests/cases/test_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_thread.c -------------------------------------------------------------------------------- /tests/cases/test_widget_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_widget_event.c -------------------------------------------------------------------------------- /tests/cases/test_widget_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_widget_opacity.c -------------------------------------------------------------------------------- /tests/cases/test_widget_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_widget_rect.c -------------------------------------------------------------------------------- /tests/cases/test_xml_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/cases/test_xml_parser.c -------------------------------------------------------------------------------- /tests/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/dog.jpg -------------------------------------------------------------------------------- /tests/helloworld_uwp/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/helloworld_uwp/App.cpp -------------------------------------------------------------------------------- /tests/helloworld_uwp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/helloworld_uwp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /tests/helloworld_uwp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/helloworld_uwp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /tests/helloworld_uwp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/helloworld_uwp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /tests/helloworld_uwp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/helloworld_uwp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /tests/helloworld_uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/helloworld_uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /tests/helloworld_uwp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/helloworld_uwp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /tests/helloworld_uwp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/helloworld_uwp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /tests/helloworld_uwp/LCUIApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/helloworld_uwp/LCUIApp.vcxproj -------------------------------------------------------------------------------- /tests/helloworld_uwp/LCUIApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/helloworld_uwp/LCUIApp.vcxproj.filters -------------------------------------------------------------------------------- /tests/helloworld_uwp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/helloworld_uwp/Package.appxmanifest -------------------------------------------------------------------------------- /tests/helloworld_uwp/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /tests/helloworld_uwp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/helloworld_uwp/pch.h -------------------------------------------------------------------------------- /tests/include/ctest-custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/include/ctest-custom.h -------------------------------------------------------------------------------- /tests/run_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/run_tests.c -------------------------------------------------------------------------------- /tests/run_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/run_tests.h -------------------------------------------------------------------------------- /tests/test_block_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_block_layout.c -------------------------------------------------------------------------------- /tests/test_block_layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_block_layout.css -------------------------------------------------------------------------------- /tests/test_block_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_block_layout.html -------------------------------------------------------------------------------- /tests/test_block_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_block_layout.xml -------------------------------------------------------------------------------- /tests/test_border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_border.c -------------------------------------------------------------------------------- /tests/test_border.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_border.css -------------------------------------------------------------------------------- /tests/test_border.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_border.html -------------------------------------------------------------------------------- /tests/test_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_border.xml -------------------------------------------------------------------------------- /tests/test_box_shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_box_shadow.c -------------------------------------------------------------------------------- /tests/test_box_shadow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_box_shadow.css -------------------------------------------------------------------------------- /tests/test_box_shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_box_shadow.html -------------------------------------------------------------------------------- /tests/test_box_shadow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_box_shadow.xml -------------------------------------------------------------------------------- /tests/test_char_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_char_render.c -------------------------------------------------------------------------------- /tests/test_css_parser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_css_parser.css -------------------------------------------------------------------------------- /tests/test_css_parser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_css_parser.xml -------------------------------------------------------------------------------- /tests/test_fill_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_fill_rect.c -------------------------------------------------------------------------------- /tests/test_fill_rect_with_rgba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_fill_rect_with_rgba.c -------------------------------------------------------------------------------- /tests/test_flex_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_flex_layout.c -------------------------------------------------------------------------------- /tests/test_flex_layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_flex_layout.css -------------------------------------------------------------------------------- /tests/test_flex_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_flex_layout.html -------------------------------------------------------------------------------- /tests/test_flex_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_flex_layout.xml -------------------------------------------------------------------------------- /tests/test_font_load.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_font_load.css -------------------------------------------------------------------------------- /tests/test_font_load.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_font_load.ttf -------------------------------------------------------------------------------- /tests/test_image_reader.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_image_reader.bmp -------------------------------------------------------------------------------- /tests/test_image_reader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_image_reader.jpg -------------------------------------------------------------------------------- /tests/test_image_reader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_image_reader.png -------------------------------------------------------------------------------- /tests/test_image_scaling_bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_image_scaling_bench.c -------------------------------------------------------------------------------- /tests/test_mix_rect_with_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_mix_rect_with_opacity.c -------------------------------------------------------------------------------- /tests/test_paint_background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_paint_background.c -------------------------------------------------------------------------------- /tests/test_paint_border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_paint_border.c -------------------------------------------------------------------------------- /tests/test_paint_boxshadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_paint_boxshadow.c -------------------------------------------------------------------------------- /tests/test_pixel_manipulation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_pixel_manipulation.c -------------------------------------------------------------------------------- /tests/test_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_render.c -------------------------------------------------------------------------------- /tests/test_scaling_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_scaling_support.c -------------------------------------------------------------------------------- /tests/test_scaling_support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_scaling_support.css -------------------------------------------------------------------------------- /tests/test_scaling_support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_scaling_support.xml -------------------------------------------------------------------------------- /tests/test_scrollbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_scrollbar.c -------------------------------------------------------------------------------- /tests/test_scrollbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_scrollbar.xml -------------------------------------------------------------------------------- /tests/test_string_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_string_render.c -------------------------------------------------------------------------------- /tests/test_text_resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_text_resize.c -------------------------------------------------------------------------------- /tests/test_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_touch.c -------------------------------------------------------------------------------- /tests/test_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_widget.c -------------------------------------------------------------------------------- /tests/test_widget_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_widget_opacity.c -------------------------------------------------------------------------------- /tests/test_widget_opacity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_widget_opacity.css -------------------------------------------------------------------------------- /tests/test_widget_opacity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_widget_opacity.xml -------------------------------------------------------------------------------- /tests/test_widget_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_widget_render.c -------------------------------------------------------------------------------- /tests/test_xml_parser.nested.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_xml_parser.nested.xml -------------------------------------------------------------------------------- /tests/test_xml_parser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/test_xml_parser.xml -------------------------------------------------------------------------------- /tests/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/tests/xmake.lua -------------------------------------------------------------------------------- /xmake-requires.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/xmake-requires.lock -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lc-soft/LCUI/HEAD/xmake.lua --------------------------------------------------------------------------------