| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
 | 
					
						
							|  |  |  | // written by Christian Daniel                                                   //
 | 
					
						
							| 
									
										
										
										
											2023-11-19 05:24:06 +01: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 16:52:39 +01: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 06:39:30 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01: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 01:48:53 +01:00
										 |  |  | #include <QSysInfo>
 | 
					
						
							| 
									
										
										
										
											2023-08-06 12:26:17 +01:00
										 |  |  | #include <QSettings>
 | 
					
						
							| 
									
										
										
										
											2022-11-17 14:41:55 +00:00
										 |  |  | #ifdef __APPLE__
 | 
					
						
							| 
									
										
										
										
											2023-09-23 22:14:01 +01:00
										 |  |  | #if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
 | 
					
						
							| 
									
										
										
										
											2022-06-19 22:09:37 +01:00
										 |  |  | #include <QGLFormat>
 | 
					
						
							| 
									
										
										
										
											2023-09-23 22:14:01 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-06-19 22:09:37 +01:00
										 |  |  | #include <QSurfaceFormat>
 | 
					
						
							| 
									
										
										
										
											2022-11-17 14:41:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-12-20 21:06:39 +00:00
										 |  |  | #ifdef ANDROID
 | 
					
						
							|  |  |  | #include "util/android.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-08-06 09:08:53 +01:00
										 |  |  | #if (QT_VERSION >= QT_VERSION_CHECK(6, 4, 0))
 | 
					
						
							|  |  |  | #include <QQuickWindow>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-11-11 11:11:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-12 02:23:55 +01:00
										 |  |  | #include "loggerwithfile.h"
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | #include "mainwindow.h"
 | 
					
						
							| 
									
										
										
										
											2023-09-05 16:38:15 +01:00
										 |  |  | #include "remotetcpsinkstarter.h"
 | 
					
						
							| 
									
										
										
										
											2018-01-22 23:29:09 +01:00
										 |  |  | #include "dsp/dsptypes.h"
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-12 02:23:55 +01:00
										 |  |  | static int runQtApplication(int argc, char* argv[], qtwebapp::LoggerWithFile *logger) | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | { | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  | 	QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8")); | 
					
						
							|  |  |  | 	QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8")); | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2019-05-03 17:46:01 +02:00
										 |  |  | 	QCoreApplication::setOrganizationName(COMPANY); | 
					
						
							|  |  |  | 	QCoreApplication::setApplicationName(APPLICATION_NAME); | 
					
						
							| 
									
										
										
										
											2019-05-31 19:24:02 +02:00
										 |  |  |     QCoreApplication::setApplicationVersion(SDRANGEL_VERSION); | 
					
						
							| 
									
										
										
										
											2019-06-07 01:36:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-04 22:52:15 +01:00
										 |  |  | #if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0)
 | 
					
						
							| 
									
										
										
										
											2018-10-25 18:48:02 +02:00
										 |  |  | 	QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); // DPI support
 | 
					
						
							| 
									
										
										
										
											2019-06-07 01:36:30 +02: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 09:17:20 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-11-17 14:41:55 +00:00
										 |  |  | #if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)) && (QT_VERSION <= QT_VERSION_CHECK(6, 0, 0))
 | 
					
						
							| 
									
										
										
										
											2022-08-31 18:01:38 +01:00
										 |  |  |     QApplication::setAttribute(Qt::AA_DisableWindowContextHelpButton); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-08-06 09:08:53 +01: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 21:06:39 +00: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 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-06 12:26:17 +01: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 22:22:19 +02:00
										 |  |  | 	QApplication a(argc, argv); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | #if 1
 | 
					
						
							| 
									
										
										
										
											2020-05-15 22:22:19 +02:00
										 |  |  |     qApp->setStyle(QStyleFactory::create("fusion")); | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	QPalette palette; | 
					
						
							| 
									
										
										
										
											2022-04-04 10:23:52 +02:00
										 |  |  | 	palette.setColor(QPalette::Window, QColor(64,64,64)); | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01: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 10:23:52 +02:00
										 |  |  | 	palette.setColor(QPalette::Button, QColor(64,64,64)); | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 	palette.setColor(QPalette::ButtonText, Qt::white); | 
					
						
							|  |  |  | 	palette.setColor(QPalette::BrightText, Qt::red); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-04 10:23:52 +02: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 16:52:39 +01: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 10:27:58 +01: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 16:52:39 +01: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 21:06:39 +00: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-18 05:06:43 +01:00
										 |  |  | 	MainParser parser; | 
					
						
							|  |  |  | 	parser.parse(*qApp); | 
					
						
							| 
									
										
										
										
											2017-11-11 11:11:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-04 22:52:15 +01:00
										 |  |  | #if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0)
 | 
					
						
							| 
									
										
										
										
											2018-01-22 23:29:09 +01:00
										 |  |  | 	qInfo("%s %s Qt %s %db %s %s DSP Rx:%db Tx:%db PID %lld", | 
					
						
							| 
									
										
										
										
											2018-01-07 01:48:53 +01:00
										 |  |  | 	        qPrintable(qApp->applicationName()), | 
					
						
							|  |  |  | 	        qPrintable(qApp->applicationVersion()), | 
					
						
							|  |  |  | 	        qPrintable(QString(QT_VERSION_STR)), | 
					
						
							| 
									
										
										
										
											2018-01-07 03:20:27 +01:00
										 |  |  | 	        QT_POINTER_SIZE*8, | 
					
						
							| 
									
										
										
										
											2018-01-07 01:48:53 +01:00
										 |  |  | 	        qPrintable(QSysInfo::currentCpuArchitecture()), | 
					
						
							| 
									
										
										
										
											2018-01-22 23:29:09 +01:00
										 |  |  | 	        qPrintable(QSysInfo::prettyProductName()), | 
					
						
							|  |  |  | 	        SDR_RX_SAMP_SZ, | 
					
						
							|  |  |  | 	        SDR_TX_SAMP_SZ, | 
					
						
							|  |  |  | 	        qApp->applicationPid()); | 
					
						
							| 
									
										
										
										
											2018-01-07 01:48:53 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2018-01-22 23:29:09 +01:00
										 |  |  |     qInfo("%s %s Qt %s %db DSP Rx:%db Tx:%db PID: %lld", | 
					
						
							| 
									
										
										
										
											2018-01-07 03:20:27 +01:00
										 |  |  |             qPrintable(qApp->applicationName()), | 
					
						
							| 
									
										
										
										
											2023-04-28 00:17:46 +02:00
										 |  |  |             qPrintable(qApp->applicationVersion()), | 
					
						
							| 
									
										
										
										
											2018-01-07 03:20:27 +01:00
										 |  |  |             qPrintable(QString(QT_VERSION_STR)), | 
					
						
							| 
									
										
										
										
											2018-01-22 23:29:09 +01:00
										 |  |  |             QT_POINTER_SIZE*8, | 
					
						
							|  |  |  |             SDR_RX_SAMP_SZ, | 
					
						
							|  |  |  |             SDR_TX_SAMP_SZ, | 
					
						
							|  |  |  |             applicationPid); | 
					
						
							| 
									
										
										
										
											2018-01-07 01:48:53 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-05 16:38:15 +01: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-18 05:06:43 +01:00
										 |  |  | 	MainWindow w(logger, parser); | 
					
						
							| 
									
										
										
										
											2023-09-05 16:38:15 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (parser.getListDevices()) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // List available physical devices and exit
 | 
					
						
							|  |  |  |         RemoteTCPSinkStarter::listAvailableDevices(); | 
					
						
							|  |  |  |         exit (EXIT_SUCCESS); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (parser.getRemoteTCPSink()) { | 
					
						
							|  |  |  |         RemoteTCPSinkStarter::start(parser); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 	w.show(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return a.exec(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int main(int argc, char* argv[]) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-05-16 12:43:53 +01:00
										 |  |  | #ifdef __APPLE__
 | 
					
						
							| 
									
										
										
										
											2022-06-19 22:09:37 +01: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 22:14:01 +01:00
										 |  |  | #if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
 | 
					
						
							| 
									
										
										
										
											2022-06-19 22:09:37 +01:00
										 |  |  |     QGLFormat fmt; | 
					
						
							|  |  |  |     fmt.setVersion(3, 3); | 
					
						
							|  |  |  |     fmt.setProfile(QGLFormat::CoreProfile); | 
					
						
							|  |  |  |     QGLFormat::setDefaultFormat(fmt); | 
					
						
							| 
									
										
										
										
											2023-09-23 22:14:01 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-06-19 22:09:37 +01:00
										 |  |  |     QSurfaceFormat sfc; | 
					
						
							|  |  |  |     sfc.setVersion(3, 3); | 
					
						
							|  |  |  |     sfc.setProfile(QSurfaceFormat::CoreProfile); | 
					
						
							|  |  |  |     QSurfaceFormat::setDefaultFormat(sfc); | 
					
						
							| 
									
										
										
										
											2023-09-12 09:20:07 +01: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 12:43:53 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-20 21:06:39 +00:00
										 |  |  | #ifdef ANDROID
 | 
					
						
							|  |  |  |     qtwebapp::LoggerWithFile *logger = nullptr; | 
					
						
							|  |  |  |     qInstallMessageHandler(Android::messageHandler); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     qtwebapp::LoggerWithFile *logger = new qtwebapp::LoggerWithFile(qApp); | 
					
						
							| 
									
										
										
										
											2017-11-11 11:11:44 +01:00
										 |  |  |     logger->installMsgHandler(); | 
					
						
							| 
									
										
										
										
											2022-12-20 21:06:39 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-11 11:11:44 +01:00
										 |  |  | 	int res = runQtApplication(argc, argv, logger); | 
					
						
							| 
									
										
										
										
											2022-12-20 21:06:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-10 20:08:11 +02:00
										 |  |  | 	delete logger; | 
					
						
							| 
									
										
										
										
											2022-12-20 21:06:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 09:31:51 +01:00
										 |  |  | 	qWarning("SDRangel quit."); | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 	return res; | 
					
						
							|  |  |  | } |