/* * This file is part of Remote Support Desktop * https://gitlab.das-netzwerkteam.de/RemoteWebApp/rwa.support.desktopapp * Copyright 2020-2021 Daniel Teichmann * Copyright 2020-2021 Mike Gabriel * SPDX-License-Identifier: GPL-2.0-or-later * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include #include #include #include #include #include #include #include #include #include #include "RWADBusAdaptor.cpp" #include "session.h" #include "scenes/add_server_wizard/add_server_wizard.h" #define BUILD_TIME __DATE__ " " __TIME__ int main(int argc, char *argv[]) { qDebug() << "This app was built on: " << BUILD_TIME; // We don't want users to have multiple instances of this app running QString tmpDirPath = QDir::tempPath() + "/rwa.support.desktopapp"; QString tmpFilePath = tmpDirPath + "/prevent-multiple-instances.lock"; QDir tmpDir(tmpDirPath); if (!tmpDir.exists()) { // Ensure that the path exists tmpDir.mkpath("."); } QLockFile lockFile(tmpFilePath); qDebug() << "Checking for a lockfile at: " + tmpFilePath; if(!lockFile.tryLock(100)){ qDebug() << QObject::tr("You already have this app running."); qDebug() << QObject::tr("Only one instance is allowed."); qDebug() << QObject::tr("Closing application now with an error."); return 1; } QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QApplication app(argc, argv); QQuickStyle::setStyle("Material"); QTranslator translator; qDebug() << "Loading locale: qrc:/locales/bin/" + QLocale::system().name(); if(translator.load(":/locales/bin/" + QLocale::system().name())) { app.installTranslator(&translator); qDebug() << "Loaded: " + QLocale::system().name() + " locale!"; } else { qDebug() << "Unable to load translation"; } QQmlApplicationEngine engine(&app); QScopedPointer main_gui (new MainQMLAdaptor(&app, &engine)); // Make mainqmladaptor available to QML engine.rootContext()->setContextProperty("mainqmladaptor", main_gui.data()); engine.load(QUrl(QStringLiteral("qrc:/src/main.qml"))); if (engine.rootObjects().isEmpty()) return -1; QScopedPointer session (new Session(&app, main_gui.data())); QObject::connect(main_gui.data(), SIGNAL(minimizeWindow()), engine.rootObjects().takeFirst(), SLOT(minimizeWindow())); QObject::connect(main_gui.data(), SIGNAL(showWindow()), engine.rootObjects().takeFirst(), SLOT(showWindow())); QScopedPointer wizard (new Add_Server_wizard(&app)); // Make add_server_wizard available to QML engine.rootContext()->setContextProperty("add_server_wizard", wizard.data()); return app.exec(); }