├── .clang-format ├── .gitignore ├── LICENSE ├── README.md ├── qml-launcher.pro ├── qml ├── AppEntry.qml ├── main.qml ├── qml.qrc └── qtquickcontrols2.conf └── src ├── imageprovider.cpp ├── imageprovider.h ├── main.cpp ├── process.cpp └── process.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamminsalo/qml-launcher/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | qml-launcher.pro.user 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamminsalo/qml-launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamminsalo/qml-launcher/HEAD/README.md -------------------------------------------------------------------------------- /qml-launcher.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamminsalo/qml-launcher/HEAD/qml-launcher.pro -------------------------------------------------------------------------------- /qml/AppEntry.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamminsalo/qml-launcher/HEAD/qml/AppEntry.qml -------------------------------------------------------------------------------- /qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamminsalo/qml-launcher/HEAD/qml/main.qml -------------------------------------------------------------------------------- /qml/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamminsalo/qml-launcher/HEAD/qml/qml.qrc -------------------------------------------------------------------------------- /qml/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamminsalo/qml-launcher/HEAD/qml/qtquickcontrols2.conf -------------------------------------------------------------------------------- /src/imageprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamminsalo/qml-launcher/HEAD/src/imageprovider.cpp -------------------------------------------------------------------------------- /src/imageprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamminsalo/qml-launcher/HEAD/src/imageprovider.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamminsalo/qml-launcher/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamminsalo/qml-launcher/HEAD/src/process.cpp -------------------------------------------------------------------------------- /src/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamminsalo/qml-launcher/HEAD/src/process.h --------------------------------------------------------------------------------