mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-06 19:12:30 +01:00
37 lines
983 B
C++
37 lines
983 B
C++
#include <QGuiApplication>
|
|
#include <QQmlApplicationEngine>
|
|
#include <QStringList>
|
|
|
|
#include "src/widgetwindow.h"
|
|
#include "../ScreenPlaySDK/screenplaysdk.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
|
|
ScreenPlaySDK sdk;
|
|
QGuiApplication app(argc, argv);
|
|
|
|
QStringList argumentList = app.arguments();
|
|
|
|
// If we start with only one argument (app path)
|
|
// It means we want to test a single widget
|
|
if (argumentList.length() == 1) {
|
|
// Todo generic widget
|
|
WidgetWindow spwmw("D:/672870/xkcd","appid" );
|
|
|
|
return app.exec();
|
|
}
|
|
|
|
if (argumentList.length() != 3) {
|
|
return -3;
|
|
}
|
|
|
|
WidgetWindow spwmw(argumentList.at(1), argumentList.at(2));
|
|
|
|
QObject::connect(&sdk, &ScreenPlaySDK::sdkDisconnected, &spwmw, &WidgetWindow::destroyThis);
|
|
QObject::connect(&sdk, &ScreenPlaySDK::incommingMessage, &spwmw, &WidgetWindow::messageReceived);
|
|
|
|
return app.exec();
|
|
}
|