1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/**
* @licence app begin@
* Copyright (C) 2011-2012 BMW AG
*
* This file is part of COVESA Project Dlt Viewer.
*
* Contributions are licensed to the COVESA Alliance under one or more
* Contribution License Agreements.
*
* \copyright
* This Source Code Form is subject to the terms of the
* Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with
* this file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* \file main.cpp
* For further information see http://www.covesa.global/.
* @licence end@
*/
#include <QModelIndex>
#include <QApplication>
#include <QStyleFactory>
#include <qdltoptmanager.h>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) && QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
#endif
// check if silent mode or help is requested
// if yes, activate offscreen mode to be able to run also without display
for(int i=0;i<argc;i++)
{
if(strcmp(argv[i],"-s")==0 || strcmp(argv[i],"--silent")==0 || strcmp(argv[i],"-h")==0 || strcmp(argv[i],"--help")==0)
{
qputenv("QT_QPA_PLATFORM","offscreen");
break;
}
}
QApplication a(argc, argv);
QDltOptManager::getInstance()->parse(a.arguments());
MainWindow w;
w.show();
return a.exec();
}
|