├── .clang-format ├── .commitlintrc.json ├── .github └── workflows │ └── ccpp.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── README.zh-cn.md ├── app └── assets │ ├── images │ └── logo.png │ └── views │ ├── app.xml │ ├── file.xml │ ├── help.xml │ ├── home.xml │ ├── notfound.xml │ └── welcome.xml ├── config └── router.js ├── include ├── config.h.in └── version.h.in ├── lcpkg.json ├── package.json ├── screenshot.gif ├── scripts └── build-css.js ├── setup.sh └── src ├── app.c ├── lib ├── router.c └── router.h ├── ui.c ├── ui.h └── ui ├── components.c ├── components.h ├── components ├── about.c ├── about.h ├── frame-tab.c └── frame-tab.h ├── stylesheets ├── _components.scss ├── _variables.scss ├── _views.scss ├── app.scss ├── components │ ├── _about.scss │ ├── _frame-tab.scss │ └── _navbar.scss └── views │ ├── _browser.scss │ ├── _file.scss │ ├── _frame.scss │ ├── _help.scss │ ├── _home.scss │ ├── _notfound.scss │ └── _welcome.scss ├── views.c ├── views.h └── views ├── browser.c ├── browser.h ├── file.c ├── file.h ├── frame.c ├── frame.h ├── help.c ├── help.h ├── home.c ├── home.h ├── notfound.c ├── notfound.h ├── welcome.c └── welcome.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/.clang-format -------------------------------------------------------------------------------- /.commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/.commitlintrc.json -------------------------------------------------------------------------------- /.github/workflows/ccpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/.github/workflows/ccpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/README.zh-cn.md -------------------------------------------------------------------------------- /app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/app/assets/images/logo.png -------------------------------------------------------------------------------- /app/assets/views/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/app/assets/views/app.xml -------------------------------------------------------------------------------- /app/assets/views/file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/app/assets/views/file.xml -------------------------------------------------------------------------------- /app/assets/views/help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/app/assets/views/help.xml -------------------------------------------------------------------------------- /app/assets/views/home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/app/assets/views/home.xml -------------------------------------------------------------------------------- /app/assets/views/notfound.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/app/assets/views/notfound.xml -------------------------------------------------------------------------------- /app/assets/views/welcome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/app/assets/views/welcome.xml -------------------------------------------------------------------------------- /config/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/config/router.js -------------------------------------------------------------------------------- /include/config.h.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/include/version.h.in -------------------------------------------------------------------------------- /lcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/lcpkg.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/screenshot.gif -------------------------------------------------------------------------------- /scripts/build-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/scripts/build-css.js -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/setup.sh -------------------------------------------------------------------------------- /src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/app.c -------------------------------------------------------------------------------- /src/lib/router.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/lib/router.c -------------------------------------------------------------------------------- /src/lib/router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/lib/router.h -------------------------------------------------------------------------------- /src/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui.c -------------------------------------------------------------------------------- /src/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui.h -------------------------------------------------------------------------------- /src/ui/components.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/components.c -------------------------------------------------------------------------------- /src/ui/components.h: -------------------------------------------------------------------------------- 1 | extern void UI_InitComponents(void); 2 | -------------------------------------------------------------------------------- /src/ui/components/about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/components/about.c -------------------------------------------------------------------------------- /src/ui/components/about.h: -------------------------------------------------------------------------------- 1 | extern void UI_InitAbout(void); 2 | -------------------------------------------------------------------------------- /src/ui/components/frame-tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/components/frame-tab.c -------------------------------------------------------------------------------- /src/ui/components/frame-tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/components/frame-tab.h -------------------------------------------------------------------------------- /src/ui/stylesheets/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/stylesheets/_components.scss -------------------------------------------------------------------------------- /src/ui/stylesheets/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/stylesheets/_variables.scss -------------------------------------------------------------------------------- /src/ui/stylesheets/_views.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/stylesheets/_views.scss -------------------------------------------------------------------------------- /src/ui/stylesheets/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/stylesheets/app.scss -------------------------------------------------------------------------------- /src/ui/stylesheets/components/_about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/stylesheets/components/_about.scss -------------------------------------------------------------------------------- /src/ui/stylesheets/components/_frame-tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/stylesheets/components/_frame-tab.scss -------------------------------------------------------------------------------- /src/ui/stylesheets/components/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/stylesheets/components/_navbar.scss -------------------------------------------------------------------------------- /src/ui/stylesheets/views/_browser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/stylesheets/views/_browser.scss -------------------------------------------------------------------------------- /src/ui/stylesheets/views/_file.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/stylesheets/views/_file.scss -------------------------------------------------------------------------------- /src/ui/stylesheets/views/_frame.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/stylesheets/views/_frame.scss -------------------------------------------------------------------------------- /src/ui/stylesheets/views/_help.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/stylesheets/views/_help.scss -------------------------------------------------------------------------------- /src/ui/stylesheets/views/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/stylesheets/views/_home.scss -------------------------------------------------------------------------------- /src/ui/stylesheets/views/_notfound.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/stylesheets/views/_notfound.scss -------------------------------------------------------------------------------- /src/ui/stylesheets/views/_welcome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/stylesheets/views/_welcome.scss -------------------------------------------------------------------------------- /src/ui/views.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/views.c -------------------------------------------------------------------------------- /src/ui/views.h: -------------------------------------------------------------------------------- 1 | extern void UI_InitViews(void); 2 | -------------------------------------------------------------------------------- /src/ui/views/browser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/views/browser.c -------------------------------------------------------------------------------- /src/ui/views/browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/views/browser.h -------------------------------------------------------------------------------- /src/ui/views/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/views/file.c -------------------------------------------------------------------------------- /src/ui/views/file.h: -------------------------------------------------------------------------------- 1 | extern void UI_InitFileView(void); 2 | -------------------------------------------------------------------------------- /src/ui/views/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/views/frame.c -------------------------------------------------------------------------------- /src/ui/views/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/views/frame.h -------------------------------------------------------------------------------- /src/ui/views/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/views/help.c -------------------------------------------------------------------------------- /src/ui/views/help.h: -------------------------------------------------------------------------------- 1 | extern void UI_InitHelpView(void); 2 | -------------------------------------------------------------------------------- /src/ui/views/home.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/views/home.c -------------------------------------------------------------------------------- /src/ui/views/home.h: -------------------------------------------------------------------------------- 1 | extern void UI_InitHomeView(void); 2 | -------------------------------------------------------------------------------- /src/ui/views/notfound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/views/notfound.c -------------------------------------------------------------------------------- /src/ui/views/notfound.h: -------------------------------------------------------------------------------- 1 | extern void UI_InitNotFoundView(void); 2 | -------------------------------------------------------------------------------- /src/ui/views/welcome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcui-dev/lcui-router-app/HEAD/src/ui/views/welcome.c -------------------------------------------------------------------------------- /src/ui/views/welcome.h: -------------------------------------------------------------------------------- 1 | extern void UI_InitWelcomeView(void); 2 | --------------------------------------------------------------------------------