1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00
ScreenPlay/ScreenPlayWindow/SPWmain.cpp
Elias 31757b4e31 Refactor window
Refactor wallpaper convertion
2019-03-10 21:20:55 +01:00

60 lines
1.7 KiB
C++

#include "../ScreenPlaySDK/screenplaysdk.h"
#if defined(Q_OS_WIN)
#include "src/winwindow.h"
#endif
#include <QApplication>
#include <QObject>
#include <QStringList>
#include <QtWebEngine>
int main(int argc, char* argv[])
{
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QApplication app(argc, argv);
QtWebEngine::initialize();
// 6 parameter + 1 OS working directory default paramter
QStringList argumentList = app.arguments();
if (argumentList.length() != 7) {
return -3;
}
ScreenPlaySDK sdk;
sdk.setAppID(argumentList.at(3));
QString monitorNumbers = argumentList.at(1);
QVector<int> list;
if (monitorNumbers.length() == 1) {
bool canParseMonitorNumber = false;
int monitor = monitorNumbers.toInt(&canParseMonitorNumber);
list.append(monitor);
} else {
QStringList activeScreensList = monitorNumbers.split(",");
for (QString s : activeScreensList) {
bool ok = false;
int val = s.toInt(&ok);
if (!ok) {
qFatal("Could not parse monitor id to diplay wallpaper");
}
list.append(val);
}
}
// Args: which monitor, (2) path to project, (3)wallpaper secret to identify the connected socket, (5) volume
// See screenplay.h @ScreenPlayWallpaper constructor how the args get created
#if defined(Q_OS_WIN)
WinWindow window = WinWindow(list, argumentList.at(2), argumentList.at(3), argumentList.at(5));
QObject::connect(&sdk, &ScreenPlaySDK::sdkDisconnected, &window, &WinWindow::destroyThis);
QObject::connect(&sdk, &ScreenPlaySDK::incommingMessage, &window, &WinWindow::messageReceived);
#endif
return app.exec();
}