2014-05-18 11:52:39 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
|
|
|
|
// written by Christian Daniel //
|
2023-11-18 23:24:06 -05:00
|
|
|
// Copyright (C) 2015-2020, 2022 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
|
|
|
|
// Copyright (C) 2018 Jason Gerecke <killertofu@gmail.com> //
|
|
|
|
// Copyright (C) 2019 Davide Gerhard <rainbow@irh.it> //
|
|
|
|
// Copyright (C) 2021-2023 Jon Beniston, M7RCE <jon@beniston.com> //
|
|
|
|
// Copyright (C) 2023 Daniele Forsi <iu5hkx@gmail.com> //
|
2014-05-18 11:52:39 -04:00
|
|
|
// //
|
|
|
|
// 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 00:39:30 -04:00
|
|
|
// (at your option) any later version. //
|
2014-05-18 11:52:39 -04: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-06 19:48:53 -05:00
|
|
|
#include <QSysInfo>
|
2023-08-06 07:26:17 -04:00
|
|
|
#include <QSettings>
|
2022-11-17 09:41:55 -05:00
|
|
|
#ifdef __APPLE__
|
2023-09-23 17:14:01 -04:00
|
|
|
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
|
2022-06-19 17:09:37 -04:00
|
|
|
#include <QGLFormat>
|
2023-09-23 17:14:01 -04:00
|
|
|
#endif
|
2022-06-19 17:09:37 -04:00
|
|
|
#include <QSurfaceFormat>
|
2022-11-17 09:41:55 -05:00
|
|
|
#endif
|
2022-12-20 16:06:39 -05:00
|
|
|
#ifdef ANDROID
|
|
|
|
#include "util/android.h"
|
|
|
|
#endif
|
2023-08-06 04:08:53 -04:00
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(6, 4, 0))
|
|
|
|
#include <QQuickWindow>
|
|
|
|
#endif
|
2017-11-11 05:11:44 -05:00
|
|
|
|
2017-11-11 20:23:55 -05:00
|
|
|
#include "loggerwithfile.h"
|
2014-05-18 11:52:39 -04:00
|
|
|
#include "mainwindow.h"
|
2023-09-05 11:38:15 -04:00
|
|
|
#include "remotetcpsinkstarter.h"
|
2018-01-22 17:29:09 -05:00
|
|
|
#include "dsp/dsptypes.h"
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2017-11-11 20:23:55 -05:00
|
|
|
static int runQtApplication(int argc, char* argv[], qtwebapp::LoggerWithFile *logger)
|
2014-05-18 11:52:39 -04:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8"));
|
|
|
|
QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));
|
|
|
|
*/
|
2019-05-03 11:46:01 -04:00
|
|
|
QCoreApplication::setOrganizationName(COMPANY);
|
|
|
|
QCoreApplication::setApplicationName(APPLICATION_NAME);
|
2019-05-31 13:24:02 -04:00
|
|
|
QCoreApplication::setApplicationVersion(SDRANGEL_VERSION);
|
2019-06-06 19:36:30 -04:00
|
|
|
|
2020-11-04 16:52:15 -05:00
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0)
|
2018-10-25 12:48:02 -04:00
|
|
|
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); // DPI support
|
2019-06-06 19:36:30 -04:00
|
|
|
QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); //HiDPI pixmaps
|
2021-12-13 05:23:05 -05:00
|
|
|
QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts); // Needed for WebGL in QWebEngineView and MainWindow::openGLVersion
|
2018-10-28 04:17:20 -04:00
|
|
|
#endif
|
2022-11-17 09:41:55 -05:00
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)) && (QT_VERSION <= QT_VERSION_CHECK(6, 0, 0))
|
2022-08-31 13:01:38 -04:00
|
|
|
QApplication::setAttribute(Qt::AA_DisableWindowContextHelpButton);
|
|
|
|
#endif
|
2023-08-06 04:08:53 -04:00
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(6, 4, 0))
|
|
|
|
// Only use OpenGL, to easily combine QOpenGLWidget, QQuickWidget and QWebEngine
|
|
|
|
// in a single window
|
|
|
|
// See https://www.qt.io/blog/qt-quick-and-widgets-qt-6.4-edition
|
|
|
|
// This prevents Direct3D/Vulcan being used on Windows/Mac though for QQuickWidget
|
|
|
|
// and QWebEngine, so possibly should be reviewed in the future
|
|
|
|
QQuickWindow::setGraphicsApi(QSGRendererInterface::OpenGL);
|
|
|
|
#endif
|
2022-12-20 16:06:39 -05:00
|
|
|
#ifndef ANDROID
|
|
|
|
QApplication::setAttribute(Qt::AA_DontUseNativeDialogs); // Don't use on Android, otherwise we can't access files on internal storage
|
|
|
|
#endif
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2023-08-06 07:26:17 -04:00
|
|
|
// Set UI scale factor for High DPI displays
|
|
|
|
QSettings settings;
|
|
|
|
QString uiScaleFactor = "graphics.ui_scale_factor";
|
|
|
|
if (settings.contains(uiScaleFactor))
|
|
|
|
{
|
|
|
|
QString scaleFactor = settings.value(uiScaleFactor).toString();
|
|
|
|
qputenv("QT_SCALE_FACTOR", scaleFactor.toLatin1());
|
|
|
|
}
|
|
|
|
|
2020-05-15 16:22:19 -04:00
|
|
|
QApplication a(argc, argv);
|
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
#if 1
|
2020-05-15 16:22:19 -04:00
|
|
|
qApp->setStyle(QStyleFactory::create("fusion"));
|
2014-05-18 11:52:39 -04:00
|
|
|
|
|
|
|
QPalette palette;
|
2022-04-04 04:23:52 -04:00
|
|
|
palette.setColor(QPalette::Window, QColor(64,64,64));
|
2014-05-18 11:52:39 -04: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 04:23:52 -04:00
|
|
|
palette.setColor(QPalette::Button, QColor(64,64,64));
|
2014-05-18 11:52:39 -04:00
|
|
|
palette.setColor(QPalette::ButtonText, Qt::white);
|
|
|
|
palette.setColor(QPalette::BrightText, Qt::red);
|
|
|
|
|
2022-04-04 04:23:52 -04: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 11:52:39 -04: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);
|
2022-09-06 05:27:58 -04:00
|
|
|
|
|
|
|
palette.setColor(QPalette::Disabled, QPalette::WindowText, Qt::gray);
|
|
|
|
palette.setColor(QPalette::Disabled, QPalette::Text, Qt::gray);
|
|
|
|
palette.setColor(QPalette::Disabled, QPalette::ButtonText, Qt::gray);
|
2014-05-18 11:52:39 -04:00
|
|
|
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
|
2022-12-20 16:06:39 -05:00
|
|
|
|
|
|
|
#ifdef ANDROID
|
|
|
|
// Default sized sliders can be hard to move using touch GUIs, so increase szie
|
|
|
|
// FIXME: How can we do a double border around the handle, as Fusion style seems to use?
|
|
|
|
// Dialog borders are hard to see as is (perhaps as Android doesn't have a title bar), so use same color as for MDI
|
|
|
|
qApp->setStyleSheet("QSlider {min-height: 20px; } "
|
|
|
|
"QSlider::groove:horizontal { border: 1px solid #2e2e2e; height: 1px; background: #444444; margin: 1px 0;}"
|
|
|
|
"QSlider::handle:horizontal { background: #585858; border: 1px double #676767; width: 16px; margin: -8px 0px; border-radius: 3px;}"
|
|
|
|
"QSlider::sub-page {background: #ff8c00; border: 1px solid #2e2e2e;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 5px;border-bottom-left-radius: 5px;}"
|
|
|
|
"QSlider::add-page {background: #444444; border: 1px solid #2e2e2e;border-top-right-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 0px;border-bottom-left-radius: 0px;}"
|
|
|
|
"QDialog { border: 1px solid #ff8c00;}"
|
|
|
|
);
|
|
|
|
#endif
|
|
|
|
|
2017-11-17 23:06:43 -05:00
|
|
|
MainParser parser;
|
|
|
|
parser.parse(*qApp);
|
2017-11-11 05:11:44 -05:00
|
|
|
|
2020-11-04 16:52:15 -05:00
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0)
|
2018-01-22 17:29:09 -05:00
|
|
|
qInfo("%s %s Qt %s %db %s %s DSP Rx:%db Tx:%db PID %lld",
|
2018-01-06 19:48:53 -05:00
|
|
|
qPrintable(qApp->applicationName()),
|
|
|
|
qPrintable(qApp->applicationVersion()),
|
|
|
|
qPrintable(QString(QT_VERSION_STR)),
|
2018-01-06 21:20:27 -05:00
|
|
|
QT_POINTER_SIZE*8,
|
2018-01-06 19:48:53 -05:00
|
|
|
qPrintable(QSysInfo::currentCpuArchitecture()),
|
2018-01-22 17:29:09 -05:00
|
|
|
qPrintable(QSysInfo::prettyProductName()),
|
|
|
|
SDR_RX_SAMP_SZ,
|
|
|
|
SDR_TX_SAMP_SZ,
|
|
|
|
qApp->applicationPid());
|
2018-01-06 19:48:53 -05:00
|
|
|
#else
|
2018-01-22 17:29:09 -05:00
|
|
|
qInfo("%s %s Qt %s %db DSP Rx:%db Tx:%db PID: %lld",
|
2018-01-06 21:20:27 -05:00
|
|
|
qPrintable(qApp->applicationName()),
|
2023-04-27 18:17:46 -04:00
|
|
|
qPrintable(qApp->applicationVersion()),
|
2018-01-06 21:20:27 -05:00
|
|
|
qPrintable(QString(QT_VERSION_STR)),
|
2018-01-22 17:29:09 -05:00
|
|
|
QT_POINTER_SIZE*8,
|
|
|
|
SDR_RX_SAMP_SZ,
|
|
|
|
SDR_TX_SAMP_SZ,
|
|
|
|
applicationPid);
|
2018-01-06 19:48:53 -05:00
|
|
|
#endif
|
|
|
|
|
2023-09-05 11:38:15 -04:00
|
|
|
if (parser.getListDevices())
|
|
|
|
{
|
|
|
|
// Disable log on console, so we can more easily see device list
|
|
|
|
logger->setConsoleMinMessageLevel(QtFatalMsg);
|
|
|
|
// Don't pass logger to MainWindow, otherwise it can reenable log output
|
|
|
|
logger = nullptr;
|
|
|
|
}
|
|
|
|
|
2017-11-17 23:06:43 -05:00
|
|
|
MainWindow w(logger, parser);
|
2023-09-05 11:38:15 -04:00
|
|
|
|
|
|
|
if (parser.getListDevices())
|
|
|
|
{
|
|
|
|
// List available physical devices and exit
|
|
|
|
RemoteTCPSinkStarter::listAvailableDevices();
|
|
|
|
exit (EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (parser.getRemoteTCPSink()) {
|
|
|
|
RemoteTCPSinkStarter::start(parser);
|
|
|
|
}
|
|
|
|
|
2014-05-18 11:52:39 -04:00
|
|
|
w.show();
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
2022-05-16 07:43:53 -04:00
|
|
|
#ifdef __APPLE__
|
2022-06-19 17:09:37 -04: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
|
2023-09-23 17:14:01 -04:00
|
|
|
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
|
2022-06-19 17:09:37 -04:00
|
|
|
QGLFormat fmt;
|
|
|
|
fmt.setVersion(3, 3);
|
|
|
|
fmt.setProfile(QGLFormat::CoreProfile);
|
|
|
|
QGLFormat::setDefaultFormat(fmt);
|
2023-09-23 17:14:01 -04:00
|
|
|
#endif
|
2022-06-19 17:09:37 -04:00
|
|
|
QSurfaceFormat sfc;
|
|
|
|
sfc.setVersion(3, 3);
|
|
|
|
sfc.setProfile(QSurfaceFormat::CoreProfile);
|
|
|
|
QSurfaceFormat::setDefaultFormat(sfc);
|
2023-09-12 04:20:07 -04:00
|
|
|
|
|
|
|
// Request authorization for access to camera and microphone (mac/auth.mm)
|
|
|
|
extern int authCameraAndMic();
|
|
|
|
if (authCameraAndMic() < 0) {
|
|
|
|
qWarning("Failed to authorize access to camera and microphone. Enable access in System Settings > Privacy & Security");
|
|
|
|
}
|
2022-05-16 07:43:53 -04:00
|
|
|
#endif
|
|
|
|
|
2022-12-20 16:06:39 -05:00
|
|
|
#ifdef ANDROID
|
|
|
|
qtwebapp::LoggerWithFile *logger = nullptr;
|
|
|
|
qInstallMessageHandler(Android::messageHandler);
|
|
|
|
#else
|
|
|
|
qtwebapp::LoggerWithFile *logger = new qtwebapp::LoggerWithFile(qApp);
|
2017-11-11 05:11:44 -05:00
|
|
|
logger->installMsgHandler();
|
2022-12-20 16:06:39 -05:00
|
|
|
#endif
|
|
|
|
|
2017-11-11 05:11:44 -05:00
|
|
|
int res = runQtApplication(argc, argv, logger);
|
2022-12-20 16:06:39 -05:00
|
|
|
|
2020-10-10 14:08:11 -04:00
|
|
|
delete logger;
|
2022-12-20 16:06:39 -05:00
|
|
|
|
2015-12-31 03:31:51 -05:00
|
|
|
qWarning("SDRangel quit.");
|
2014-05-18 11:52:39 -04:00
|
|
|
return res;
|
|
|
|
}
|