├── .gitignore ├── .vscode └── tasks.json ├── LICENSE ├── QuickUI.sln ├── QuickUI ├── Clipboard.cpp ├── Clipboard.h ├── Fs.cpp ├── Fs.h ├── Global.cpp ├── Global.h ├── JsEnv.cpp ├── JsEnv.h ├── QuickUI.rc ├── QuickUI.vcxproj ├── QuickUI.vcxproj.filters ├── Tray.cpp ├── Tray.h ├── Util.cpp ├── Util.h ├── WebUI.cpp ├── WebUI.h ├── Win.cpp ├── Win.h ├── build.md ├── main.cpp ├── resource.h ├── todo.md └── ui │ ├── .vscode │ └── settings.json │ ├── dist │ └── main.dev.js │ ├── index.css │ ├── index.html │ ├── index.js │ ├── main.js │ ├── main │ ├── main.ts │ ├── os.d.ts │ ├── quickui.d.ts │ └── tsconfig.json │ └── ui │ ├── index.scss │ └── index.ts ├── README.md └── doc └── todo.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/LICENSE -------------------------------------------------------------------------------- /QuickUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI.sln -------------------------------------------------------------------------------- /QuickUI/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/Clipboard.cpp -------------------------------------------------------------------------------- /QuickUI/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/Clipboard.h -------------------------------------------------------------------------------- /QuickUI/Fs.cpp: -------------------------------------------------------------------------------- 1 | #include "Fs.h" 2 | -------------------------------------------------------------------------------- /QuickUI/Fs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | class Fs 3 | { 4 | }; 5 | 6 | -------------------------------------------------------------------------------- /QuickUI/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/Global.cpp -------------------------------------------------------------------------------- /QuickUI/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/Global.h -------------------------------------------------------------------------------- /QuickUI/JsEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/JsEnv.cpp -------------------------------------------------------------------------------- /QuickUI/JsEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/JsEnv.h -------------------------------------------------------------------------------- /QuickUI/QuickUI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/QuickUI.rc -------------------------------------------------------------------------------- /QuickUI/QuickUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/QuickUI.vcxproj -------------------------------------------------------------------------------- /QuickUI/QuickUI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/QuickUI.vcxproj.filters -------------------------------------------------------------------------------- /QuickUI/Tray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/Tray.cpp -------------------------------------------------------------------------------- /QuickUI/Tray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/Tray.h -------------------------------------------------------------------------------- /QuickUI/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/Util.cpp -------------------------------------------------------------------------------- /QuickUI/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/Util.h -------------------------------------------------------------------------------- /QuickUI/WebUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/WebUI.cpp -------------------------------------------------------------------------------- /QuickUI/WebUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/WebUI.h -------------------------------------------------------------------------------- /QuickUI/Win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/Win.cpp -------------------------------------------------------------------------------- /QuickUI/Win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/Win.h -------------------------------------------------------------------------------- /QuickUI/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/build.md -------------------------------------------------------------------------------- /QuickUI/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/main.cpp -------------------------------------------------------------------------------- /QuickUI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/resource.h -------------------------------------------------------------------------------- /QuickUI/todo.md: -------------------------------------------------------------------------------- 1 | - 引入QuickJs -------------------------------------------------------------------------------- /QuickUI/ui/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/ui/.vscode/settings.json -------------------------------------------------------------------------------- /QuickUI/ui/dist/main.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/ui/dist/main.dev.js -------------------------------------------------------------------------------- /QuickUI/ui/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/ui/index.css -------------------------------------------------------------------------------- /QuickUI/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/ui/index.html -------------------------------------------------------------------------------- /QuickUI/ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/ui/index.js -------------------------------------------------------------------------------- /QuickUI/ui/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/ui/main.js -------------------------------------------------------------------------------- /QuickUI/ui/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/ui/main/main.ts -------------------------------------------------------------------------------- /QuickUI/ui/main/os.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/ui/main/os.d.ts -------------------------------------------------------------------------------- /QuickUI/ui/main/quickui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/ui/main/quickui.d.ts -------------------------------------------------------------------------------- /QuickUI/ui/main/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/ui/main/tsconfig.json -------------------------------------------------------------------------------- /QuickUI/ui/ui/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/ui/ui/index.scss -------------------------------------------------------------------------------- /QuickUI/ui/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/QuickUI/ui/ui/index.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/QuickUI/HEAD/README.md -------------------------------------------------------------------------------- /doc/todo.md: -------------------------------------------------------------------------------- 1 | - support js worker --------------------------------------------------------------------------------