├── .editorconfig ├── .gitignore ├── CMakeLists.txt ├── Common ├── App.cpp ├── App.h ├── CMakeLists.txt ├── Console.cpp ├── Console.h ├── Div.cpp ├── Div.h ├── Element.cpp ├── Element.h ├── Icon.cpp ├── Icon.h ├── Img.cpp ├── Img.h ├── Input.cpp ├── Input.h ├── JS.cpp ├── JS.h ├── Libuv.cpp ├── Libuv.h ├── Path.cpp ├── Path.h ├── Rect.cpp ├── Rect.h ├── Shadow.cpp ├── Shadow.h ├── Sys.cpp ├── Sys.h ├── Text.cpp ├── Text.h ├── TextBase.cpp ├── TextBase.h ├── Util.cpp ├── Util.h ├── Win.cpp ├── Win.h ├── WinMsg.cpp ├── WinSizePos.cpp └── WinTimer.cpp ├── Doc ├── Build.md ├── Config.ts ├── Div.cpp.md ├── Div.h.md ├── ToDo.md ├── banner.png ├── original.png └── snap.gif ├── Installer ├── CMakeLists.txt ├── banner0.png ├── banner1.png ├── banner2.png ├── iconfont.ttf ├── img.png ├── img2.jpeg ├── img3.bmp ├── img4.webp ├── img5.gif ├── main.cpp └── main.js ├── InstallerCreator ├── CMakeLists.txt └── main.cpp ├── LICENSE ├── README.md ├── Res └── InstallerCreator.ttf └── Uninstaller ├── CMakeLists.txt └── main.cpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /.vs/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Common/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/App.cpp -------------------------------------------------------------------------------- /Common/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/App.h -------------------------------------------------------------------------------- /Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/CMakeLists.txt -------------------------------------------------------------------------------- /Common/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Console.cpp -------------------------------------------------------------------------------- /Common/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Console.h -------------------------------------------------------------------------------- /Common/Div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Div.cpp -------------------------------------------------------------------------------- /Common/Div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Div.h -------------------------------------------------------------------------------- /Common/Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Element.cpp -------------------------------------------------------------------------------- /Common/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Element.h -------------------------------------------------------------------------------- /Common/Icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Icon.cpp -------------------------------------------------------------------------------- /Common/Icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Icon.h -------------------------------------------------------------------------------- /Common/Img.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Img.cpp -------------------------------------------------------------------------------- /Common/Img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Img.h -------------------------------------------------------------------------------- /Common/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Input.cpp -------------------------------------------------------------------------------- /Common/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Input.h -------------------------------------------------------------------------------- /Common/JS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/JS.cpp -------------------------------------------------------------------------------- /Common/JS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/JS.h -------------------------------------------------------------------------------- /Common/Libuv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Libuv.cpp -------------------------------------------------------------------------------- /Common/Libuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Libuv.h -------------------------------------------------------------------------------- /Common/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Path.cpp -------------------------------------------------------------------------------- /Common/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Path.h -------------------------------------------------------------------------------- /Common/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Rect.cpp -------------------------------------------------------------------------------- /Common/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Rect.h -------------------------------------------------------------------------------- /Common/Shadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Shadow.cpp -------------------------------------------------------------------------------- /Common/Shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Shadow.h -------------------------------------------------------------------------------- /Common/Sys.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Common/Sys.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Common/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Text.cpp -------------------------------------------------------------------------------- /Common/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Text.h -------------------------------------------------------------------------------- /Common/TextBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/TextBase.cpp -------------------------------------------------------------------------------- /Common/TextBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/TextBase.h -------------------------------------------------------------------------------- /Common/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Util.cpp -------------------------------------------------------------------------------- /Common/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Util.h -------------------------------------------------------------------------------- /Common/Win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Win.cpp -------------------------------------------------------------------------------- /Common/Win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/Win.h -------------------------------------------------------------------------------- /Common/WinMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/WinMsg.cpp -------------------------------------------------------------------------------- /Common/WinSizePos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/WinSizePos.cpp -------------------------------------------------------------------------------- /Common/WinTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Common/WinTimer.cpp -------------------------------------------------------------------------------- /Doc/Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Doc/Build.md -------------------------------------------------------------------------------- /Doc/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Doc/Config.ts -------------------------------------------------------------------------------- /Doc/Div.cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Doc/Div.cpp.md -------------------------------------------------------------------------------- /Doc/Div.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Doc/Div.h.md -------------------------------------------------------------------------------- /Doc/ToDo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Doc/ToDo.md -------------------------------------------------------------------------------- /Doc/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Doc/banner.png -------------------------------------------------------------------------------- /Doc/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Doc/original.png -------------------------------------------------------------------------------- /Doc/snap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Doc/snap.gif -------------------------------------------------------------------------------- /Installer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Installer/CMakeLists.txt -------------------------------------------------------------------------------- /Installer/banner0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Installer/banner0.png -------------------------------------------------------------------------------- /Installer/banner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Installer/banner1.png -------------------------------------------------------------------------------- /Installer/banner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Installer/banner2.png -------------------------------------------------------------------------------- /Installer/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Installer/iconfont.ttf -------------------------------------------------------------------------------- /Installer/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Installer/img.png -------------------------------------------------------------------------------- /Installer/img2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Installer/img2.jpeg -------------------------------------------------------------------------------- /Installer/img3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Installer/img3.bmp -------------------------------------------------------------------------------- /Installer/img4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Installer/img4.webp -------------------------------------------------------------------------------- /Installer/img5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Installer/img5.gif -------------------------------------------------------------------------------- /Installer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Installer/main.cpp -------------------------------------------------------------------------------- /Installer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Installer/main.js -------------------------------------------------------------------------------- /InstallerCreator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/InstallerCreator/CMakeLists.txt -------------------------------------------------------------------------------- /InstallerCreator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/InstallerCreator/main.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/README.md -------------------------------------------------------------------------------- /Res/InstallerCreator.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Res/InstallerCreator.ttf -------------------------------------------------------------------------------- /Uninstaller/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Uninstaller/CMakeLists.txt -------------------------------------------------------------------------------- /Uninstaller/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xland/InstallerCreator/HEAD/Uninstaller/main.cpp --------------------------------------------------------------------------------