2014-05-18 15:52:39 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
|
|
|
|
// written by Christian Daniel //
|
|
|
|
// //
|
|
|
|
// 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 as version 3 of the License, or //
|
2019-04-11 04:39:30 +00:00
|
|
|
// (at your option) any later version. //
|
2014-05-18 15:52:39 +00:00
|
|
|
// //
|
|
|
|
// 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 V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QTextCodec>
|
|
|
|
#include <QProxyStyle>
|
|
|
|
#include <QStyleFactory>
|
|
|
|
#include <QFontDatabase>
|
2018-01-07 00:48:53 +00:00
|
|
|
#include <QSysInfo>
|
2022-06-19 21:09:37 +00:00
|
|
|
#include <QGLFormat>
|
|
|
|
#include <QSurfaceFormat>
|
2017-11-11 10:11:44 +00:00
|
|
|
|
2017-11-12 01:23:55 +00:00
|
|
|
#include "loggerwithfile.h"
|
2014-05-18 15:52:39 +00:00
|
|
|
#include "mainwindow.h"
|
2018-01-22 22:29:09 +00:00
|
|
|
#include "dsp/dsptypes.h"
|
2014-05-18 15:52:39 +00:00
|
|
|
|
2017-11-12 01:23:55 +00:00
|
|
|
static int runQtApplication(int argc, char* argv[], qtwebapp::LoggerWithFile *logger)
|
2014-05-18 15:52:39 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8"));
|
|
|
|
QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));
|
|
|
|
*/
|
2019-05-03 15:46:01 +00:00
|
|
|
QCoreApplication::setOrganizationName(COMPANY);
|
|
|
|
QCoreApplication::setApplicationName(APPLICATION_NAME);
|
2019-05-31 17:24:02 +00:00
|
|
|
QCoreApplication::setApplicationVersion(SDRANGEL_VERSION);
|
2019-06-06 23:36:30 +00:00
|
|
|
|
2020-11-04 21:52:15 +00:00
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0)
|
2018-10-25 16:48:02 +00:00
|
|
|
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); // DPI support
|
2019-06-06 23:36:30 +00:00
|
|
|
QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); //HiDPI pixmaps
|
2021-12-13 10:23:05 +00:00
|
|
|
QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts); // Needed for WebGL in QWebEngineView and MainWindow::openGLVersion
|
2018-10-28 08:17:20 +00:00
|
|
|
#endif
|
2014-05-18 15:52:39 +00:00
|
|
|
|
2020-05-15 20:22:19 +00:00
|
|
|
QApplication a(argc, argv);
|
|
|
|
|
2014-05-18 15:52:39 +00:00
|
|
|
#if 1
|
2020-05-15 20:22:19 +00:00
|
|
|
qApp->setStyle(QStyleFactory::create("fusion"));
|
2014-05-18 15:52:39 +00:00
|
|
|
|
|
|
|
QPalette palette;
|
2022-04-04 08:23:52 +00:00
|
|
|
palette.setColor(QPalette::Window, QColor(64,64,64));
|
2014-05-18 15:52:39 +00:00
|
|
|
palette.setColor(QPalette::WindowText, Qt::white);
|
|
|
|
palette.setColor(QPalette::Base, QColor(25,25,25));
|
|
|
|
palette.setColor(QPalette::AlternateBase, QColor(53,53,53));
|
|
|
|
palette.setColor(QPalette::ToolTipBase, Qt::white);
|
|
|
|
palette.setColor(QPalette::ToolTipText, Qt::black);
|
|
|
|
palette.setColor(QPalette::Text, Qt::white);
|
2022-04-04 08:23:52 +00:00
|
|
|
palette.setColor(QPalette::Button, QColor(64,64,64));
|
2014-05-18 15:52:39 +00:00
|
|
|
palette.setColor(QPalette::ButtonText, Qt::white);
|
|
|
|
palette.setColor(QPalette::BrightText, Qt::red);
|
|
|
|
|
2022-04-04 08:23:52 +00:00
|
|
|
palette.setColor(QPalette::Light, QColor(64,64,64).lighter(125).lighter());
|
|
|
|
palette.setColor(QPalette::Mid, QColor(64,64,64).lighter(125));
|
|
|
|
palette.setColor(QPalette::Dark, QColor(64,64,64).lighter(125).darker());
|
2014-05-18 15:52:39 +00:00
|
|
|
|
|
|
|
palette.setColor(QPalette::Link, QColor(0,0xa0,0xa0));
|
|
|
|
palette.setColor(QPalette::LinkVisited, QColor(0,0xa0,0xa0).lighter());
|
|
|
|
palette.setColor(QPalette::Highlight, QColor(0xff, 0x8c, 0x00));
|
|
|
|
palette.setColor(QPalette::HighlightedText, Qt::black);
|
|
|
|
qApp->setPalette(palette);
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
if(QFontDatabase::addApplicationFont("/tmp/Cuprum.otf") >= 0) {
|
|
|
|
QFont font("CuprumFFU");
|
|
|
|
font.setPointSize(10);
|
|
|
|
qApp->setFont(font);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if 0
|
|
|
|
if(QFontDatabase::addApplicationFont("/tmp/PTN57F.ttf") >= 0) {
|
|
|
|
QFont font("PT Sans Narrow");
|
|
|
|
font.setPointSize(10);
|
|
|
|
qApp->setFont(font);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if 0
|
|
|
|
if(QFontDatabase::addApplicationFont("/tmp/PTS55F.ttf") >= 0) {
|
|
|
|
QFont font("PT Sans");
|
|
|
|
font.setPointSize(10);
|
|
|
|
qApp->setFont(font);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if 0
|
|
|
|
{
|
|
|
|
QFont font("Ubuntu Condensed");
|
|
|
|
font.setPointSize(10);
|
|
|
|
qApp->setFont(font);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
2017-11-18 04:06:43 +00:00
|
|
|
MainParser parser;
|
|
|
|
parser.parse(*qApp);
|
2017-11-11 10:11:44 +00:00
|
|
|
|
2020-11-04 21:52:15 +00:00
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0)
|
2018-01-22 22:29:09 +00:00
|
|
|
qInfo("%s %s Qt %s %db %s %s DSP Rx:%db Tx:%db PID %lld",
|
2018-01-07 00:48:53 +00:00
|
|
|
qPrintable(qApp->applicationName()),
|
|
|
|
qPrintable(qApp->applicationVersion()),
|
|
|
|
qPrintable(QString(QT_VERSION_STR)),
|
2018-01-07 02:20:27 +00:00
|
|
|
QT_POINTER_SIZE*8,
|
2018-01-07 00:48:53 +00:00
|
|
|
qPrintable(QSysInfo::currentCpuArchitecture()),
|
2018-01-22 22:29:09 +00:00
|
|
|
qPrintable(QSysInfo::prettyProductName()),
|
|
|
|
SDR_RX_SAMP_SZ,
|
|
|
|
SDR_TX_SAMP_SZ,
|
|
|
|
qApp->applicationPid());
|
2018-01-07 00:48:53 +00:00
|
|
|
#else
|
2018-01-22 22:29:09 +00:00
|
|
|
qInfo("%s %s Qt %s %db DSP Rx:%db Tx:%db PID: %lld",
|
2018-01-07 02:20:27 +00:00
|
|
|
qPrintable(qApp->applicationName()),
|
|
|
|
qPrintable((qApp->applicationVersion()),
|
|
|
|
qPrintable(QString(QT_VERSION_STR)),
|
2018-01-22 22:29:09 +00:00
|
|
|
QT_POINTER_SIZE*8,
|
|
|
|
SDR_RX_SAMP_SZ,
|
|
|
|
SDR_TX_SAMP_SZ,
|
|
|
|
applicationPid);
|
2018-01-07 00:48:53 +00:00
|
|
|
#endif
|
|
|
|
|
2017-11-18 04:06:43 +00:00
|
|
|
MainWindow w(logger, parser);
|
2014-05-18 15:52:39 +00:00
|
|
|
w.show();
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
2022-05-16 11:43:53 +00:00
|
|
|
#ifdef __APPLE__
|
2022-06-19 21:09:37 +00:00
|
|
|
// Request OpenGL 3.3 context, needed for glspectrum and 3D Map feature
|
|
|
|
// Note that Mac only supports CoreProfile, so any deprecated OpenGL 2 features
|
|
|
|
// will not work. Because of this, we have two versions of the shaders:
|
|
|
|
// OpenGL 2 versions for compatiblity with older drivers and OpenGL 3.3
|
|
|
|
// versions for newer drivers
|
|
|
|
QGLFormat fmt;
|
|
|
|
fmt.setVersion(3, 3);
|
|
|
|
fmt.setProfile(QGLFormat::CoreProfile);
|
|
|
|
QGLFormat::setDefaultFormat(fmt);
|
|
|
|
QSurfaceFormat sfc;
|
|
|
|
sfc.setVersion(3, 3);
|
|
|
|
sfc.setProfile(QSurfaceFormat::CoreProfile);
|
|
|
|
QSurfaceFormat::setDefaultFormat(sfc);
|
2022-05-16 11:43:53 +00:00
|
|
|
#endif
|
|
|
|
|
2017-11-12 01:23:55 +00:00
|
|
|
qtwebapp::LoggerWithFile *logger = new qtwebapp::LoggerWithFile(qApp);
|
2017-11-11 10:11:44 +00:00
|
|
|
logger->installMsgHandler();
|
|
|
|
int res = runQtApplication(argc, argv, logger);
|
2020-10-10 18:08:11 +00:00
|
|
|
delete logger;
|
2015-12-31 08:31:51 +00:00
|
|
|
qWarning("SDRangel quit.");
|
2014-05-18 15:52:39 +00:00
|
|
|
return res;
|
|
|
|
}
|