Adding QT Launcher Documention

This commit is contained in:
Dante Ruiz 2019-11-22 15:55:57 -08:00 committed by danteruiz
parent d76dfbe83b
commit d8ba0564b5
2 changed files with 31 additions and 0 deletions

11
launchers/qt/BUILD.md Normal file
View file

@ -0,0 +1,11 @@
# Dependencies
- [cmake](https://cmake.org/download/): 3.9
# Windows
cmake -G "Visual Studio 16 2019" ..
# OSX
cmake -G Xcode ..
if you wish to not use the compiled qml files pass the `-DLAUNCHER_SOURCE_TREE_RESOURCES=On` argument to cmake.

20
launchers/qt/readme.md Normal file
View file

@ -0,0 +1,20 @@
# HQ Launcher
Behavior of the HQ Launcher is as follows:
* Launching the user in the current HQ domain
* Update the Interface client to the current version.
* Update the HQ Launcher to the current version
# directory structure
## src/ - contains the c++ and objective-c.
* LauncherState - hold majority of the logic of the launcher (signin, config file, updating, running launcher)
* LauncherInstaller_windows - logic of how to install/uninstall HQ Launcher on windows
* Helper - helper functions
* UserSettings - getting the users setting (home location) from metaverse
* BuildsRequest - getting / parsing the build info from thunder api
* LoginRequest - checks the login credentials the user typed in.
* Unzipper - helper class for extracting zip files
## resources/
* image/ - Holds the images and icon that are used by the launcher
* qml/ - UI elements - `QML_FILE_FOR_UI_STATE` varible in LauchherState defines what qml files are used by the laucnher.