2022-06-08 13:55:15 -04:00
|
|
|
#include "tabletinterface.h"
|
|
|
|
|
|
|
|
#include <QQmlContext>
|
2022-08-15 11:14:37 -04:00
|
|
|
#include <QQuickView>
|
2022-06-08 12:06:44 -04:00
|
|
|
|
2022-08-15 11:14:37 -04:00
|
|
|
TabletInterface::TabletInterface(LauncherCore& core) {
|
2022-06-08 13:55:15 -04:00
|
|
|
qmlRegisterType<ProfileSettings>("Astra", 1, 0, "ProfileSettings");
|
|
|
|
qmlRegisterType<LoginInformation>("Astra", 1, 0, "LoginInformation");
|
|
|
|
|
2022-06-08 12:06:44 -04:00
|
|
|
applicationEngine = new QQmlApplicationEngine();
|
|
|
|
|
2022-06-08 13:55:15 -04:00
|
|
|
applicationEngine->rootContext()->setContextProperty("core", &core);
|
2022-06-08 12:06:44 -04:00
|
|
|
applicationEngine->load("qrc:/main.qml");
|
|
|
|
}
|