/* * Copyright (C) 2015-2020 by Savoir-faire Linux * Author: Edric Ladent Milaret * Author: Andreas Traczyk * Author: Mingrui Zhang * * 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 3 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, see . */ #include "mainapplication.h" #include "runguard.h" #include #include #include int main(int argc, char *argv[]) { setlocale(LC_ALL, "en_US.utf8"); #ifdef Q_OS_LINUX setenv("QT_QPA_PLATFORMTHEME", "gtk3", true); #endif MainApplication::applicationInitialization(); char ARG_DISABLE_WEB_SECURITY[] = "--disable-web-security"; auto newArgv = MainApplication::parseInputArgument(argc, argv, ARG_DISABLE_WEB_SECURITY); MainApplication a(argc, newArgv); /* * Runguard to make sure that only one instance runs at a time. * Note: needs to be after the creation of the application */ QCryptographicHash appData(QCryptographicHash::Sha256); appData.addData(QApplication::applicationName().toUtf8()); appData.addData(QApplication::organizationDomain().toUtf8()); RunGuard guard(appData.result()); if (!guard.tryToRun()) { /* * No need to exitApp since app is not set up. */ return 0; } if (!a.applicationSetup()) { guard.release(); a.exitApp(); return 0; } /* * Exec the application. */ auto ret = a.exec(); guard.release(); return ret; }