kopia lustrzana https://github.com/f4exb/sdrangel
				
				
				
			
		
			
				
	
	
		
			925 wiersze
		
	
	
		
			31 KiB
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			925 wiersze
		
	
	
		
			31 KiB
		
	
	
	
		
			C++
		
	
	
///////////////////////////////////////////////////////////////////////////////////
 | 
						|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
 | 
						|
// written by Christian Daniel                                                   //
 | 
						|
// Copyright (C) 2015-2022 Edouard Griffiths, F4EXB <f4exb06@gmail.com>          //
 | 
						|
// Copyright (C) 2015 John Greb <hexameron@spam.no>                              //
 | 
						|
// Copyright (C) 2018 beta-tester <alpha-beta-release@gmx.net>                   //
 | 
						|
// Copyright (C) 2021-2023 Jon Beniston, M7RCE <jon@beniston.com>                //
 | 
						|
// Copyright (C) 2022 Jiří Pinkava <jiri.pinkava@rossum.ai>                      //
 | 
						|
//                                                                               //
 | 
						|
// 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                  //
 | 
						|
// (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 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 <QDockWidget>
 | 
						|
#include <QMainWindow>
 | 
						|
#include <QFileDialog>
 | 
						|
#include <QTime>
 | 
						|
#include <QDebug>
 | 
						|
#include <QMessageBox>
 | 
						|
 | 
						|
#include <cmath>
 | 
						|
 | 
						|
#include "device/deviceuiset.h"
 | 
						|
#include "plugin/pluginapi.h"
 | 
						|
#include "dsp/dspengine.h"
 | 
						|
#include "dsp/dspcommands.h"
 | 
						|
#include "util/db.h"
 | 
						|
#include "gui/basicchannelsettingsdialog.h"
 | 
						|
#include "gui/dialpopup.h"
 | 
						|
#include "gui/dialogpositioner.h"
 | 
						|
#include "maincore.h"
 | 
						|
 | 
						|
#include "ui_atvmodgui.h"
 | 
						|
#include "atvmodgui.h"
 | 
						|
#include "atvmodreport.h"
 | 
						|
 | 
						|
ATVModGUI* ATVModGUI::create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx)
 | 
						|
{
 | 
						|
    ATVModGUI* gui = new ATVModGUI(pluginAPI, deviceUISet, channelTx);
 | 
						|
	return gui;
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::destroy()
 | 
						|
{
 | 
						|
    delete this;
 | 
						|
}
 | 
						|
 | 
						|
ATVModGUI::ATVModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSource *channelTx, QWidget* parent) :
 | 
						|
	ChannelGUI(parent),
 | 
						|
	ui(new Ui::ATVModGUI),
 | 
						|
	m_pluginAPI(pluginAPI),
 | 
						|
	m_deviceUISet(deviceUISet),
 | 
						|
	m_channelMarker(this),
 | 
						|
    m_deviceCenterFrequency(0),
 | 
						|
    m_basebandSampleRate(1),
 | 
						|
	m_doApplySettings(true),
 | 
						|
    m_videoLength(0),
 | 
						|
    m_videoFrameRate(48000),
 | 
						|
    m_frameCount(0),
 | 
						|
    m_tickCount(0),
 | 
						|
    m_enableNavTime(false),
 | 
						|
    m_camBusyFPSMessageBox(0),
 | 
						|
    m_rfSliderDivisor(100000)
 | 
						|
{
 | 
						|
	setAttribute(Qt::WA_DeleteOnClose, true);
 | 
						|
    m_helpURL = "plugins/channeltx/modatv/readme.md";
 | 
						|
    RollupContents *rollupContents = getRollupContents();
 | 
						|
	ui->setupUi(rollupContents);
 | 
						|
    setSizePolicy(rollupContents->sizePolicy());
 | 
						|
    rollupContents->arrangeRollups();
 | 
						|
	connect(rollupContents, SIGNAL(widgetRolled(QWidget*,bool)), this, SLOT(onWidgetRolled(QWidget*,bool)));
 | 
						|
	connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(onMenuDialogCalled(const QPoint &)));
 | 
						|
 | 
						|
	m_atvMod = (ATVMod*) channelTx;
 | 
						|
	m_atvMod->setMessageQueueToGUI(getInputMessageQueue());
 | 
						|
 | 
						|
	connect(&MainCore::instance()->getMasterTimer(), SIGNAL(timeout()), this, SLOT(tick()));
 | 
						|
 | 
						|
    ui->deltaFrequencyLabel->setText(QString("%1f").arg(QChar(0x94, 0x03)));
 | 
						|
    ui->deltaFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold));
 | 
						|
    ui->deltaFrequency->setValueRange(false, 8, -99999999, 99999999);
 | 
						|
 | 
						|
    m_channelMarker.blockSignals(true);
 | 
						|
	m_channelMarker.setColor(m_settings.m_rgbColor);
 | 
						|
	m_channelMarker.setBandwidth(5000);
 | 
						|
	m_channelMarker.setCenterFrequency(0);
 | 
						|
	m_channelMarker.setTitle("ATV Modulator");
 | 
						|
    m_channelMarker.setSourceOrSinkStream(false);
 | 
						|
	m_channelMarker.blockSignals(false);
 | 
						|
	m_channelMarker.setVisible(true); // activate signal on the last setting only
 | 
						|
 | 
						|
    setTitleColor(m_channelMarker.getColor());
 | 
						|
    m_settings.setChannelMarker(&m_channelMarker);
 | 
						|
    m_settings.setRollupState(&m_rollupState);
 | 
						|
 | 
						|
	m_deviceUISet->addChannelMarker(&m_channelMarker);
 | 
						|
 | 
						|
	connect(&m_channelMarker, SIGNAL(changedByCursor()), this, SLOT(channelMarkerChangedByCursor()));
 | 
						|
 | 
						|
    resetToDefaults();
 | 
						|
 | 
						|
	connect(getInputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleSourceMessages()));
 | 
						|
    m_atvMod->setLevelMeter(ui->volumeMeter);
 | 
						|
 | 
						|
    std::vector<int> cameraNumbers;
 | 
						|
    m_atvMod->getCameraNumbers(cameraNumbers);
 | 
						|
 | 
						|
    for (std::vector<int>::iterator it = cameraNumbers.begin(); it != cameraNumbers.end(); ++it) {
 | 
						|
        ui->camSelect->addItem(tr("%1").arg(*it));
 | 
						|
    }
 | 
						|
 | 
						|
    QChar delta = QChar(0x94, 0x03);
 | 
						|
    ui->fmExcursionLabel->setText(delta);
 | 
						|
 | 
						|
    displaySettings();
 | 
						|
    makeUIConnections();
 | 
						|
    applySettings(true);
 | 
						|
    DialPopup::addPopupsToChildDials(this);
 | 
						|
    m_resizer.enableChildMouseTracking();
 | 
						|
}
 | 
						|
 | 
						|
ATVModGUI::~ATVModGUI()
 | 
						|
{
 | 
						|
	delete ui;
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::resetToDefaults()
 | 
						|
{
 | 
						|
    m_settings.resetToDefaults();
 | 
						|
}
 | 
						|
 | 
						|
QByteArray ATVModGUI::serialize() const
 | 
						|
{
 | 
						|
    return m_settings.serialize();
 | 
						|
}
 | 
						|
 | 
						|
bool ATVModGUI::deserialize(const QByteArray& data)
 | 
						|
{
 | 
						|
    if(m_settings.deserialize(data))
 | 
						|
    {
 | 
						|
        displaySettings();
 | 
						|
        applySettings(true); // will have true
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
    else
 | 
						|
    {
 | 
						|
        m_settings.resetToDefaults();
 | 
						|
        displaySettings();
 | 
						|
        applySettings(true); // will have true
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
bool ATVModGUI::handleMessage(const Message& message)
 | 
						|
{
 | 
						|
    if (ATVModReport::MsgReportVideoFileSourceStreamData::match(message))
 | 
						|
    {
 | 
						|
        m_videoFrameRate = ((ATVModReport::MsgReportVideoFileSourceStreamData&)message).getFrameRate();
 | 
						|
        m_videoLength = ((ATVModReport::MsgReportVideoFileSourceStreamData&)message).getVideoLength();
 | 
						|
        m_frameCount = 0;
 | 
						|
        updateWithStreamData();
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
    else if (ATVModReport::MsgReportVideoFileSourceStreamTiming::match(message))
 | 
						|
    {
 | 
						|
        m_frameCount = ((ATVModReport::MsgReportVideoFileSourceStreamTiming&)message).getFrameCount();
 | 
						|
        updateWithStreamTime();
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
    else if (ATVModReport::MsgReportCameraData::match(message))
 | 
						|
    {
 | 
						|
        ATVModReport::MsgReportCameraData& rpt = (ATVModReport::MsgReportCameraData&) message;
 | 
						|
        ui->cameraDeviceNumber->setText(tr("#%1").arg(rpt.getdeviceNumber()));
 | 
						|
        ui->camerFPS->setText(tr("%1 FPS").arg(rpt.getFPS(), 0, 'f', 2));
 | 
						|
        ui->cameraImageSize->setText(tr("%1x%2").arg(rpt.getWidth()).arg(rpt.getHeight()));
 | 
						|
        ui->cameraManualFPSText->setText(tr("%1 FPS").arg(rpt.getFPSManual(), 0, 'f', 1));
 | 
						|
        ui->cameraManualFPSEnable->setChecked(rpt.getFPSManualEnable());
 | 
						|
        ui->cameraManualFPS->setValue((int) rpt.getFPSManual()*10.0f);
 | 
						|
 | 
						|
        int status = rpt.getStatus();
 | 
						|
 | 
						|
        if (status == 1) // camera FPS scan is startng
 | 
						|
        {
 | 
						|
            m_camBusyFPSMessageBox = new QMessageBox();
 | 
						|
            m_camBusyFPSMessageBox->setText("Computing camera FPS. Please wait…");
 | 
						|
            m_camBusyFPSMessageBox->setStandardButtons(QMessageBox::NoButton);
 | 
						|
            m_camBusyFPSMessageBox->show();
 | 
						|
        }
 | 
						|
        else if (status == 2) // camera FPS scan is finished
 | 
						|
        {
 | 
						|
            if (m_camBusyFPSMessageBox)
 | 
						|
            {
 | 
						|
                m_camBusyFPSMessageBox->close();
 | 
						|
                delete m_camBusyFPSMessageBox;
 | 
						|
            }
 | 
						|
 | 
						|
            m_camBusyFPSMessageBox = 0;
 | 
						|
        }
 | 
						|
 | 
						|
    	return true;
 | 
						|
    }
 | 
						|
    else if (ATVModReport::MsgReportEffectiveSampleRate::match(message))
 | 
						|
    {
 | 
						|
        int sampleRate = ((ATVModReport::MsgReportEffectiveSampleRate&)message).getSampleRate();
 | 
						|
        uint32_t nbPointsPerLine = ((ATVModReport::MsgReportEffectiveSampleRate&)message).gatNbPointsPerLine();
 | 
						|
        ui->channelSampleRateText->setText(tr("%1k").arg(sampleRate/1000.0f, 0, 'f', 2));
 | 
						|
        ui->nbPointsPerLineText->setText(tr("%1p").arg(nbPointsPerLine));
 | 
						|
        setRFFiltersSlidersRange(sampleRate);
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
    else if (ATVMod::MsgConfigureATVMod::match(message))
 | 
						|
    {
 | 
						|
        const ATVMod::MsgConfigureATVMod& cfg = (ATVMod::MsgConfigureATVMod&) message;
 | 
						|
        m_settings = cfg.getSettings();
 | 
						|
        blockApplySettings(true);
 | 
						|
        m_channelMarker.updateSettings(static_cast<const ChannelMarker*>(m_settings.m_channelMarker));
 | 
						|
        displaySettings();
 | 
						|
        blockApplySettings(false);
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
    else if (ATVMod::MsgConfigureImageFileName::match(message))
 | 
						|
    {
 | 
						|
        const ATVMod::MsgConfigureImageFileName& cfg = (ATVMod::MsgConfigureImageFileName&) message;
 | 
						|
        ui->imageFileText->setText(cfg.getFileName());
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
    else if (ATVMod::MsgConfigureVideoFileName::match(message))
 | 
						|
    {
 | 
						|
        const ATVMod::MsgConfigureVideoFileName& cfg = (ATVMod::MsgConfigureVideoFileName&) message;
 | 
						|
        ui->videoFileText->setText(cfg.getFileName());
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
    else if (DSPSignalNotification::match(message))
 | 
						|
    {
 | 
						|
        const DSPSignalNotification& notif = (const DSPSignalNotification&) message;
 | 
						|
        m_deviceCenterFrequency = notif.getCenterFrequency();
 | 
						|
        m_basebandSampleRate = notif.getSampleRate();
 | 
						|
        ui->deltaFrequency->setValueRange(false, 8, -m_basebandSampleRate/2, m_basebandSampleRate/2);
 | 
						|
        ui->deltaFrequencyLabel->setToolTip(tr("Range %1 %L2 Hz").arg(QChar(0xB1)).arg(m_basebandSampleRate/2));
 | 
						|
        updateAbsoluteCenterFrequency();
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
    else
 | 
						|
    {
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::channelMarkerChangedByCursor()
 | 
						|
{
 | 
						|
    ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency());
 | 
						|
    m_settings.m_inputFrequencyOffset = m_channelMarker.getCenterFrequency();
 | 
						|
	applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::setRFFiltersSlidersRange(int sampleRate)
 | 
						|
{
 | 
						|
    int scaleFactor = (int) std::log10(sampleRate/2);
 | 
						|
    m_rfSliderDivisor = std::pow(10.0, scaleFactor-1);
 | 
						|
 | 
						|
    if (sampleRate/m_rfSliderDivisor < 50) {
 | 
						|
        m_rfSliderDivisor /= 10;
 | 
						|
    }
 | 
						|
 | 
						|
    if ((ui->modulation->currentIndex() == (int) ATVModSettings::ATVModulationLSB) ||
 | 
						|
        (ui->modulation->currentIndex() == (int) ATVModSettings::ATVModulationUSB) ||
 | 
						|
        (ui->modulation->currentIndex() == (int) ATVModSettings::ATVModulationVestigialLSB) ||
 | 
						|
        (ui->modulation->currentIndex() == (int) ATVModSettings::ATVModulationVestigialUSB))
 | 
						|
    {
 | 
						|
        ui->rfBW->setMaximum((sampleRate) / (2*m_rfSliderDivisor));
 | 
						|
        ui->rfOppBW->setMaximum((sampleRate) / (2*m_rfSliderDivisor));
 | 
						|
    }
 | 
						|
    else
 | 
						|
    {
 | 
						|
        ui->rfBW->setMaximum((sampleRate) / m_rfSliderDivisor);
 | 
						|
        ui->rfOppBW->setMaximum((sampleRate) / m_rfSliderDivisor);
 | 
						|
    }
 | 
						|
 | 
						|
    ui->rfBWText->setText(QString("%1k").arg((ui->rfBW->value()*m_rfSliderDivisor) / 1000.0, 0, 'f', 1));
 | 
						|
    ui->rfOppBWText->setText(QString("%1k").arg((ui->rfOppBW->value()*m_rfSliderDivisor) / 1000.0, 0, 'f', 1));
 | 
						|
}
 | 
						|
 | 
						|
int ATVModGUI::getNbLines()
 | 
						|
{
 | 
						|
    switch(ui->nbLines->currentIndex())
 | 
						|
    {
 | 
						|
    case 0:
 | 
						|
        return 819;
 | 
						|
        break;
 | 
						|
    case 1:
 | 
						|
        return 640;
 | 
						|
        break;
 | 
						|
    case 3:
 | 
						|
        return 525;
 | 
						|
        break;
 | 
						|
    case 4:
 | 
						|
        return 480;
 | 
						|
        break;
 | 
						|
    case 5:
 | 
						|
        return 405;
 | 
						|
        break;
 | 
						|
    case 6:
 | 
						|
        return 360;
 | 
						|
        break;
 | 
						|
    case 7:
 | 
						|
        return 343;
 | 
						|
        break;
 | 
						|
    case 8:
 | 
						|
        return 240;
 | 
						|
        break;
 | 
						|
    case 9:
 | 
						|
        return 180;
 | 
						|
        break;
 | 
						|
    case 10:
 | 
						|
        return 120;
 | 
						|
        break;
 | 
						|
    case 11:
 | 
						|
        return 90;
 | 
						|
        break;
 | 
						|
    case 12:
 | 
						|
        return 60;
 | 
						|
        break;
 | 
						|
    case 13:
 | 
						|
        return 32;
 | 
						|
        break;
 | 
						|
    case 2:
 | 
						|
    default:
 | 
						|
        return 625;
 | 
						|
        break;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
int ATVModGUI::getNbLinesIndex(int nbLines)
 | 
						|
{
 | 
						|
    if (nbLines < 32) {
 | 
						|
        return 2;
 | 
						|
    } else if (nbLines < 60) {
 | 
						|
        return 13;
 | 
						|
    } else if (nbLines < 90) {
 | 
						|
        return 12;
 | 
						|
    } else if (nbLines < 120) {
 | 
						|
        return 11;
 | 
						|
    } else if (nbLines < 180) {
 | 
						|
        return 10;
 | 
						|
    } else if (nbLines < 240) {
 | 
						|
        return 9;
 | 
						|
    } else if (nbLines < 343) {
 | 
						|
        return 8;
 | 
						|
    } else if (nbLines < 360) {
 | 
						|
        return 7;
 | 
						|
    } else if (nbLines < 405) {
 | 
						|
        return 6;
 | 
						|
    } else if (nbLines < 480) {
 | 
						|
        return 5;
 | 
						|
    } else if (nbLines < 525) {
 | 
						|
        return 4;
 | 
						|
    } else if (nbLines < 625) {
 | 
						|
        return 3;
 | 
						|
    } else if (nbLines < 640) {
 | 
						|
        return 2;
 | 
						|
    } else if (nbLines < 819) {
 | 
						|
        return 1;
 | 
						|
    } else {
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
int ATVModGUI::getFPS()
 | 
						|
{
 | 
						|
    switch(ui->fps->currentIndex())
 | 
						|
    {
 | 
						|
    case 0:
 | 
						|
        return 30;
 | 
						|
        break;
 | 
						|
    case 2:
 | 
						|
        return 20;
 | 
						|
        break;
 | 
						|
    case 3:
 | 
						|
        return 16;
 | 
						|
        break;
 | 
						|
    case 4:
 | 
						|
        return 12;
 | 
						|
        break;
 | 
						|
    case 5:
 | 
						|
        return 10;
 | 
						|
        break;
 | 
						|
    case 6:
 | 
						|
        return 8;
 | 
						|
        break;
 | 
						|
    case 7:
 | 
						|
        return 5;
 | 
						|
        break;
 | 
						|
    case 8:
 | 
						|
        return 2;
 | 
						|
        break;
 | 
						|
    case 9:
 | 
						|
        return 1;
 | 
						|
        break;
 | 
						|
    case 1:
 | 
						|
    default:
 | 
						|
        return 25;
 | 
						|
        break;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
int ATVModGUI::getFPSIndex(int fps)
 | 
						|
{
 | 
						|
    if (fps < 1) {
 | 
						|
        return 1;
 | 
						|
    } else if (fps < 2) {
 | 
						|
        return 9;
 | 
						|
    } else if (fps < 5) {
 | 
						|
        return 8;
 | 
						|
    } else if (fps < 8) {
 | 
						|
        return 7;
 | 
						|
    } else if (fps < 10) {
 | 
						|
        return 6;
 | 
						|
    } else if (fps < 12) {
 | 
						|
        return 5;
 | 
						|
    } else if (fps < 16) {
 | 
						|
        return 4;
 | 
						|
    } else if (fps < 20) {
 | 
						|
        return 3;
 | 
						|
    } else if (fps < 25) {
 | 
						|
        return 2;
 | 
						|
    } else if (fps < 30) {
 | 
						|
        return 1;
 | 
						|
    } else {
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::handleSourceMessages()
 | 
						|
{
 | 
						|
    Message* message;
 | 
						|
 | 
						|
    while ((message = getInputMessageQueue()->pop()) != 0)
 | 
						|
    {
 | 
						|
        if (handleMessage(*message))
 | 
						|
        {
 | 
						|
            delete message;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_deltaFrequency_changed(qint64 value)
 | 
						|
{
 | 
						|
    m_channelMarker.setCenterFrequency(value);
 | 
						|
    m_settings.m_inputFrequencyOffset = value;
 | 
						|
    updateAbsoluteCenterFrequency();
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_modulation_currentIndexChanged(int index)
 | 
						|
{
 | 
						|
    m_settings.m_atvModulation = (ATVModSettings::ATVModulation) index;
 | 
						|
    setRFFiltersSlidersRange(m_atvMod->getEffectiveSampleRate());
 | 
						|
    setChannelMarkerBandwidth();
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_rfScaling_valueChanged(int value)
 | 
						|
{
 | 
						|
    ui->rfScalingText->setText(tr("%1").arg(value));
 | 
						|
    m_settings.m_rfScalingFactor = value * 327.68f;
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_fmExcursion_valueChanged(int value)
 | 
						|
{
 | 
						|
    ui->fmExcursionText->setText(tr("%1").arg(value / 10.0, 0, 'f', 1));
 | 
						|
    m_settings.m_fmExcursion = value / 1000.0; // pro mill
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_rfBW_valueChanged(int value)
 | 
						|
{
 | 
						|
	ui->rfBWText->setText(QString("%1k").arg((value*m_rfSliderDivisor) / 1000.0, 0, 'f', 1));
 | 
						|
	m_settings.m_rfBandwidth = value * m_rfSliderDivisor * 1.0f;
 | 
						|
	setChannelMarkerBandwidth();
 | 
						|
	applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_rfOppBW_valueChanged(int value)
 | 
						|
{
 | 
						|
    ui->rfOppBWText->setText(QString("%1k").arg((value*m_rfSliderDivisor) / 1000.0, 0, 'f', 1));
 | 
						|
    m_settings.m_rfOppBandwidth = value * m_rfSliderDivisor * 1.0f;
 | 
						|
    setChannelMarkerBandwidth();
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::setChannelMarkerBandwidth()
 | 
						|
{
 | 
						|
    if (ui->modulation->currentIndex() == (int) ATVModSettings::ATVModulationLSB)
 | 
						|
    {
 | 
						|
        m_channelMarker.setBandwidth(-ui->rfBW->value()*m_rfSliderDivisor*2);
 | 
						|
        m_channelMarker.setSidebands(ChannelMarker::lsb);
 | 
						|
    }
 | 
						|
    else if (ui->modulation->currentIndex() == (int) ATVModSettings::ATVModulationVestigialLSB)
 | 
						|
    {
 | 
						|
        m_channelMarker.setBandwidth(ui->rfBW->value()*m_rfSliderDivisor);
 | 
						|
        m_channelMarker.setOppositeBandwidth(ui->rfOppBW->value()*m_rfSliderDivisor);
 | 
						|
        m_channelMarker.setSidebands(ChannelMarker::vlsb);
 | 
						|
    }
 | 
						|
    else if (ui->modulation->currentIndex() == (int) ATVModSettings::ATVModulationUSB)
 | 
						|
    {
 | 
						|
        m_channelMarker.setBandwidth(ui->rfBW->value()*m_rfSliderDivisor*2);
 | 
						|
        m_channelMarker.setSidebands(ChannelMarker::usb);
 | 
						|
    }
 | 
						|
    else if (ui->modulation->currentIndex() == (int) ATVModSettings::ATVModulationVestigialUSB)
 | 
						|
    {
 | 
						|
        m_channelMarker.setBandwidth(ui->rfBW->value()*m_rfSliderDivisor);
 | 
						|
        m_channelMarker.setOppositeBandwidth(ui->rfOppBW->value()*m_rfSliderDivisor);
 | 
						|
        m_channelMarker.setSidebands(ChannelMarker::vusb);
 | 
						|
    }
 | 
						|
    else
 | 
						|
    {
 | 
						|
        m_channelMarker.setBandwidth(ui->rfBW->value()*m_rfSliderDivisor);
 | 
						|
        m_channelMarker.setSidebands(ChannelMarker::dsb);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_nbLines_currentIndexChanged(int index)
 | 
						|
{
 | 
						|
    (void) index;
 | 
						|
    m_settings.m_nbLines = getNbLines();
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_fps_currentIndexChanged(int index)
 | 
						|
{
 | 
						|
    (void) index;
 | 
						|
    m_settings.m_fps = getFPS();
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void ATVModGUI::on_standard_currentIndexChanged(int index)
 | 
						|
{
 | 
						|
    m_settings.m_atvStd = (ATVModSettings::ATVStd) index;
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_uniformLevel_valueChanged(int value)
 | 
						|
{
 | 
						|
	ui->uniformLevelText->setText(QString("%1").arg(value));
 | 
						|
	m_settings.m_uniformLevel = value / 100.0f;
 | 
						|
	applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_invertVideo_clicked(bool checked)
 | 
						|
{
 | 
						|
    m_settings.m_invertedVideo = checked;
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_inputSelect_currentIndexChanged(int index)
 | 
						|
{
 | 
						|
    m_settings.m_atvModInput = (ATVModSettings::ATVModInput) index;
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_channelMute_toggled(bool checked)
 | 
						|
{
 | 
						|
    m_settings.m_channelMute = checked;
 | 
						|
	applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_forceDecimator_toggled(bool checked)
 | 
						|
{
 | 
						|
    m_settings.m_forceDecimator = checked;
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_imageFileDialog_clicked(bool checked)
 | 
						|
{
 | 
						|
    (void) checked;
 | 
						|
    QString fileName = QFileDialog::getOpenFileName(this,
 | 
						|
        tr("Open image file"), ".", tr("Image Files (*.png *.jpg *.bmp *.gif *.tiff)"), 0, QFileDialog::DontUseNativeDialog);
 | 
						|
 | 
						|
    if (fileName != "")
 | 
						|
    {
 | 
						|
        m_imageFileName = fileName;
 | 
						|
        ui->imageFileText->setText(m_imageFileName);
 | 
						|
        configureImageFileName();
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_videoFileDialog_clicked(bool checked)
 | 
						|
{
 | 
						|
    (void) checked;
 | 
						|
    QString fileName = QFileDialog::getOpenFileName(this,
 | 
						|
        tr("Open video file"), ".", tr("Video Files (*.avi *.mpg *.mp4 *.mov *.m4v *.mkv *.vob *.wmv)"), 0, QFileDialog::DontUseNativeDialog);
 | 
						|
 | 
						|
    if (fileName != "")
 | 
						|
    {
 | 
						|
        m_videoFileName = fileName;
 | 
						|
        ui->videoFileText->setText(m_videoFileName);
 | 
						|
        configureVideoFileName();
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_playLoop_toggled(bool checked)
 | 
						|
{
 | 
						|
    m_settings.m_videoPlayLoop = checked;
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_playVideo_toggled(bool checked)
 | 
						|
{
 | 
						|
    m_settings.m_videoPlay = checked;
 | 
						|
    ui->navTimeSlider->setEnabled(!checked);
 | 
						|
    m_enableNavTime = !checked;
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_navTimeSlider_valueChanged(int value)
 | 
						|
{
 | 
						|
    if (m_enableNavTime && ((value >= 0) && (value <= 100)))
 | 
						|
    {
 | 
						|
        ATVMod::MsgConfigureVideoFileSourceSeek* message = ATVMod::MsgConfigureVideoFileSourceSeek::create(value);
 | 
						|
        m_atvMod->getInputMessageQueue()->push(message);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_playCamera_toggled(bool checked)
 | 
						|
{
 | 
						|
    m_settings.m_cameraPlay = checked;
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_camSelect_currentIndexChanged(int index)
 | 
						|
{
 | 
						|
    ATVMod::MsgConfigureCameraIndex* message = ATVMod::MsgConfigureCameraIndex::create(index);
 | 
						|
    m_atvMod->getInputMessageQueue()->push(message);
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_cameraManualFPSEnable_toggled(bool checked)
 | 
						|
{
 | 
						|
	ATVMod::MsgConfigureCameraData* message = ATVMod::MsgConfigureCameraData::create(
 | 
						|
			ui->camSelect->currentIndex(),
 | 
						|
			ui->cameraManualFPS->value() / 10.0f,
 | 
						|
			checked);
 | 
						|
    m_atvMod->getInputMessageQueue()->push(message);
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_cameraManualFPS_valueChanged(int value)
 | 
						|
{
 | 
						|
    ui->cameraManualFPSText->setText(tr("%1 FPS").arg(value / 10.0f, 0, 'f', 1));
 | 
						|
	ATVMod::MsgConfigureCameraData* message = ATVMod::MsgConfigureCameraData::create(
 | 
						|
			ui->camSelect->currentIndex(),
 | 
						|
			value / 10.0f,
 | 
						|
			ui->cameraManualFPSEnable->isChecked());
 | 
						|
    m_atvMod->getInputMessageQueue()->push(message);
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_overlayTextShow_toggled(bool checked)
 | 
						|
{
 | 
						|
    m_settings.m_showOverlayText = checked;
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::on_overlayText_textEdited(const QString& arg1)
 | 
						|
{
 | 
						|
    (void) arg1;
 | 
						|
    m_settings.m_overlayText = arg1;
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::configureImageFileName()
 | 
						|
{
 | 
						|
    qDebug() << "ATVModGUI::configureImageFileName: " << m_imageFileName.toStdString().c_str();
 | 
						|
    ATVMod::MsgConfigureImageFileName* message = ATVMod::MsgConfigureImageFileName::create(m_imageFileName);
 | 
						|
    m_atvMod->getInputMessageQueue()->push(message);
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::configureVideoFileName()
 | 
						|
{
 | 
						|
    qDebug() << "ATVModGUI::configureVideoFileName: " << m_videoFileName.toStdString().c_str();
 | 
						|
    ATVMod::MsgConfigureVideoFileName* message = ATVMod::MsgConfigureVideoFileName::create(m_videoFileName);
 | 
						|
    m_atvMod->getInputMessageQueue()->push(message);
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::onWidgetRolled(QWidget* widget, bool rollDown)
 | 
						|
{
 | 
						|
    (void) widget;
 | 
						|
    (void) rollDown;
 | 
						|
 | 
						|
    getRollupContents()->saveState(m_rollupState);
 | 
						|
    applySettings();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::onMenuDialogCalled(const QPoint &p)
 | 
						|
{
 | 
						|
    if (m_contextMenuType == ContextMenuChannelSettings)
 | 
						|
    {
 | 
						|
        BasicChannelSettingsDialog dialog(&m_channelMarker, this);
 | 
						|
        dialog.setUseReverseAPI(m_settings.m_useReverseAPI);
 | 
						|
        dialog.setReverseAPIAddress(m_settings.m_reverseAPIAddress);
 | 
						|
        dialog.setReverseAPIPort(m_settings.m_reverseAPIPort);
 | 
						|
        dialog.setReverseAPIDeviceIndex(m_settings.m_reverseAPIDeviceIndex);
 | 
						|
        dialog.setReverseAPIChannelIndex(m_settings.m_reverseAPIChannelIndex);
 | 
						|
        dialog.setDefaultTitle(m_displayedName);
 | 
						|
 | 
						|
        if (m_deviceUISet->m_deviceMIMOEngine)
 | 
						|
        {
 | 
						|
            dialog.setNumberOfStreams(m_atvMod->getNumberOfDeviceStreams());
 | 
						|
            dialog.setStreamIndex(m_settings.m_streamIndex);
 | 
						|
        }
 | 
						|
 | 
						|
        dialog.move(p);
 | 
						|
        new DialogPositioner(&dialog, false);
 | 
						|
        dialog.exec();
 | 
						|
 | 
						|
        m_settings.m_rgbColor = m_channelMarker.getColor().rgb();
 | 
						|
        m_settings.m_title = m_channelMarker.getTitle();
 | 
						|
        m_settings.m_useReverseAPI = dialog.useReverseAPI();
 | 
						|
        m_settings.m_reverseAPIAddress = dialog.getReverseAPIAddress();
 | 
						|
        m_settings.m_reverseAPIPort = dialog.getReverseAPIPort();
 | 
						|
        m_settings.m_reverseAPIDeviceIndex = dialog.getReverseAPIDeviceIndex();
 | 
						|
        m_settings.m_reverseAPIChannelIndex = dialog.getReverseAPIChannelIndex();
 | 
						|
 | 
						|
        setWindowTitle(m_settings.m_title);
 | 
						|
        setTitle(m_channelMarker.getTitle());
 | 
						|
        setTitleColor(m_settings.m_rgbColor);
 | 
						|
 | 
						|
        if (m_deviceUISet->m_deviceMIMOEngine)
 | 
						|
        {
 | 
						|
            m_settings.m_streamIndex = dialog.getSelectedStreamIndex();
 | 
						|
            m_channelMarker.clearStreamIndexes();
 | 
						|
            m_channelMarker.addStreamIndex(m_settings.m_streamIndex);
 | 
						|
            updateIndexLabel();
 | 
						|
        }
 | 
						|
 | 
						|
        applySettings();
 | 
						|
    }
 | 
						|
 | 
						|
    resetContextMenuType();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::blockApplySettings(bool block)
 | 
						|
{
 | 
						|
    m_doApplySettings = !block;
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::applySettings(bool force)
 | 
						|
{
 | 
						|
	if (m_doApplySettings)
 | 
						|
	{
 | 
						|
		ATVMod::MsgConfigureSourceCenterFrequency *msgChan = ATVMod::MsgConfigureSourceCenterFrequency::create(
 | 
						|
		        m_channelMarker.getCenterFrequency());
 | 
						|
        m_atvMod->getInputMessageQueue()->push(msgChan);
 | 
						|
 | 
						|
		ATVMod::MsgConfigureATVMod *msg = ATVMod::MsgConfigureATVMod::create(m_settings, force);
 | 
						|
		m_atvMod->getInputMessageQueue()->push(msg);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::displaySettings()
 | 
						|
{
 | 
						|
    m_channelMarker.blockSignals(true);
 | 
						|
    m_channelMarker.setCenterFrequency(m_settings.m_inputFrequencyOffset);
 | 
						|
    m_channelMarker.setTitle(m_settings.m_title);
 | 
						|
    setChannelMarkerBandwidth();
 | 
						|
    m_channelMarker.blockSignals(false);
 | 
						|
    m_channelMarker.setColor(m_settings.m_rgbColor); // activate signal on the last setting only
 | 
						|
 | 
						|
    setTitleColor(m_settings.m_rgbColor);
 | 
						|
    setWindowTitle(m_channelMarker.getTitle());
 | 
						|
    setTitle(m_channelMarker.getTitle());
 | 
						|
    updateIndexLabel();
 | 
						|
 | 
						|
    blockApplySettings(true);
 | 
						|
 | 
						|
    ui->deltaFrequency->setValue(m_settings.m_inputFrequencyOffset);
 | 
						|
 | 
						|
    ui->modulation->setCurrentIndex((int) m_settings.m_atvModulation);
 | 
						|
    setRFFiltersSlidersRange(m_atvMod->getEffectiveSampleRate());
 | 
						|
 | 
						|
    ui->rfBW->setValue(roundf(m_settings.m_rfBandwidth / m_rfSliderDivisor));
 | 
						|
    ui->rfBWText->setText(QString("%1k").arg((ui->rfBW->value()*m_rfSliderDivisor) / 1000.0, 0, 'f', 1));
 | 
						|
 | 
						|
    ui->rfOppBW->setValue(roundf(m_settings.m_rfOppBandwidth / m_rfSliderDivisor));
 | 
						|
    ui->rfOppBWText->setText(QString("%1k").arg((ui->rfOppBW->value()*m_rfSliderDivisor) / 1000.0, 0, 'f', 1));
 | 
						|
 | 
						|
    ui->forceDecimator->setChecked(m_settings.m_forceDecimator);
 | 
						|
    ui->channelMute->setChecked(m_settings.m_channelMute);
 | 
						|
 | 
						|
    ui->fmExcursion->setValue(roundf(m_settings.m_fmExcursion * 1000.0));
 | 
						|
    ui->fmExcursionText->setText(tr("%1").arg(ui->fmExcursion->value() / 10.0, 0, 'f', 1));
 | 
						|
 | 
						|
    ui->rfScaling->setValue(roundf(m_settings.m_rfScalingFactor / 327.68f));
 | 
						|
    ui->rfScalingText->setText(tr("%1").arg(ui->rfScaling->value()));
 | 
						|
 | 
						|
    int validNbLinesIndex = getNbLinesIndex(m_settings.m_nbLines);
 | 
						|
    ui->nbLines->setCurrentIndex(validNbLinesIndex);
 | 
						|
    m_settings.m_nbLines = getNbLines(); // normalize
 | 
						|
    int validFPSIndex = getFPSIndex(m_settings.m_fps);
 | 
						|
    ui->fps->setCurrentIndex(validFPSIndex);
 | 
						|
    m_settings.m_fps = getFPS(); // normalize
 | 
						|
 | 
						|
    ui->standard->setCurrentIndex((int) m_settings.m_atvStd);
 | 
						|
    ui->inputSelect->setCurrentIndex((int) m_settings.m_atvModInput);
 | 
						|
 | 
						|
    ui->invertVideo->setChecked(m_settings.m_invertedVideo);
 | 
						|
 | 
						|
    ui->uniformLevel->setValue(roundf(m_settings.m_uniformLevel * 100.0));
 | 
						|
    ui->uniformLevelText->setText(QString("%1").arg(ui->uniformLevel->value()));
 | 
						|
 | 
						|
    ui->overlayText->setText(m_settings.m_overlayText);
 | 
						|
    ui->overlayTextShow->setChecked(m_settings.m_showOverlayText);
 | 
						|
 | 
						|
    ui->playCamera->setChecked(m_settings.m_cameraPlay);
 | 
						|
    ui->playVideo->setChecked(m_settings.m_videoPlay);
 | 
						|
    ui->playLoop->setChecked(m_settings.m_videoPlayLoop);
 | 
						|
 | 
						|
    getRollupContents()->restoreState(m_rollupState);
 | 
						|
    updateAbsoluteCenterFrequency();
 | 
						|
    blockApplySettings(false);
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::leaveEvent(QEvent* event)
 | 
						|
{
 | 
						|
	m_channelMarker.setHighlighted(false);
 | 
						|
    ChannelGUI::leaveEvent(event);
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::enterEvent(EnterEventType* event)
 | 
						|
{
 | 
						|
	m_channelMarker.setHighlighted(true);
 | 
						|
    ChannelGUI::enterEvent(event);
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::tick()
 | 
						|
{
 | 
						|
    double powDb = CalcDb::dbPower(m_atvMod->getMagSq());
 | 
						|
	m_channelPowerDbAvg(powDb);
 | 
						|
	ui->channelPower->setText(tr("%1 dB").arg(m_channelPowerDbAvg.asDouble(), 0, 'f', 1));
 | 
						|
 | 
						|
    if (((++m_tickCount & 0xf) == 0) && (ui->inputSelect->currentIndex() == (int) ATVModSettings::ATVModInputVideo))
 | 
						|
    {
 | 
						|
        ATVMod::MsgConfigureVideoFileSourceStreamTiming* message = ATVMod::MsgConfigureVideoFileSourceStreamTiming::create();
 | 
						|
        m_atvMod->getInputMessageQueue()->push(message);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::updateWithStreamData()
 | 
						|
{
 | 
						|
    QTime recordLength(0, 0, 0, 0);
 | 
						|
    recordLength = recordLength.addSecs(m_videoLength / m_videoFrameRate);
 | 
						|
    QString s_time = recordLength.toString("HH:mm:ss");
 | 
						|
    ui->recordLengthText->setText(s_time);
 | 
						|
    updateWithStreamTime();
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::updateWithStreamTime()
 | 
						|
{
 | 
						|
    int t_sec = 0;
 | 
						|
    int t_msec = 0;
 | 
						|
 | 
						|
    if (m_videoFrameRate > 0.0f)
 | 
						|
    {
 | 
						|
        float secs = m_frameCount / m_videoFrameRate;
 | 
						|
        t_sec = (int) secs;
 | 
						|
        t_msec = (int) ((secs - t_sec) * 1000.0f);
 | 
						|
    }
 | 
						|
 | 
						|
    QTime t(0, 0, 0, 0);
 | 
						|
    t = t.addSecs(t_sec);
 | 
						|
    t = t.addMSecs(t_msec);
 | 
						|
    QString s_timems = t.toString("HH:mm:ss.zzz");
 | 
						|
    QString s_time = t.toString("HH:mm:ss");
 | 
						|
    ui->relTimeText->setText(s_timems);
 | 
						|
 | 
						|
    if (!m_enableNavTime)
 | 
						|
    {
 | 
						|
        float posRatio = (t_sec *  m_videoFrameRate) / m_videoLength;
 | 
						|
        ui->navTimeSlider->setValue((int) (posRatio * 100.0));
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::makeUIConnections()
 | 
						|
{
 | 
						|
    QObject::connect(ui->deltaFrequency, &ValueDialZ::changed, this, &ATVModGUI::on_deltaFrequency_changed);
 | 
						|
    QObject::connect(ui->channelMute, &QToolButton::toggled, this, &ATVModGUI::on_channelMute_toggled);
 | 
						|
    QObject::connect(ui->forceDecimator, &ButtonSwitch::toggled, this, &ATVModGUI::on_forceDecimator_toggled);
 | 
						|
    QObject::connect(ui->modulation, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &ATVModGUI::on_modulation_currentIndexChanged);
 | 
						|
    QObject::connect(ui->rfScaling, &QDial::valueChanged, this, &ATVModGUI::on_rfScaling_valueChanged);
 | 
						|
    QObject::connect(ui->fmExcursion, &QDial::valueChanged, this, &ATVModGUI::on_fmExcursion_valueChanged);
 | 
						|
    QObject::connect(ui->rfBW, &QSlider::valueChanged, this, &ATVModGUI::on_rfBW_valueChanged);
 | 
						|
    QObject::connect(ui->rfOppBW, &QSlider::valueChanged, this, &ATVModGUI::on_rfOppBW_valueChanged);
 | 
						|
    QObject::connect(ui->nbLines, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &ATVModGUI::on_nbLines_currentIndexChanged);
 | 
						|
    QObject::connect(ui->fps, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &ATVModGUI::on_fps_currentIndexChanged);
 | 
						|
    QObject::connect(ui->standard, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &ATVModGUI::on_standard_currentIndexChanged);
 | 
						|
    QObject::connect(ui->invertVideo, &QCheckBox::clicked, this, &ATVModGUI::on_invertVideo_clicked);
 | 
						|
    QObject::connect(ui->uniformLevel, &QDial::valueChanged, this, &ATVModGUI::on_uniformLevel_valueChanged);
 | 
						|
    QObject::connect(ui->inputSelect, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &ATVModGUI::on_inputSelect_currentIndexChanged);
 | 
						|
    QObject::connect(ui->imageFileDialog, &QPushButton::clicked, this, &ATVModGUI::on_imageFileDialog_clicked);
 | 
						|
    QObject::connect(ui->videoFileDialog, &QPushButton::clicked, this, &ATVModGUI::on_videoFileDialog_clicked);
 | 
						|
    QObject::connect(ui->playVideo, &ButtonSwitch::toggled, this, &ATVModGUI::on_playVideo_toggled);
 | 
						|
    QObject::connect(ui->playLoop, &ButtonSwitch::toggled, this, &ATVModGUI::on_playLoop_toggled);
 | 
						|
    QObject::connect(ui->navTimeSlider, &QSlider::valueChanged, this, &ATVModGUI::on_navTimeSlider_valueChanged);
 | 
						|
    QObject::connect(ui->playCamera, &ButtonSwitch::toggled, this, &ATVModGUI::on_playCamera_toggled);
 | 
						|
    QObject::connect(ui->camSelect, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &ATVModGUI::on_camSelect_currentIndexChanged);
 | 
						|
    QObject::connect(ui->cameraManualFPSEnable, &ButtonSwitch::toggled, this, &ATVModGUI::on_cameraManualFPSEnable_toggled);
 | 
						|
    QObject::connect(ui->cameraManualFPS, &QDial::valueChanged, this, &ATVModGUI::on_cameraManualFPS_valueChanged);
 | 
						|
    QObject::connect(ui->overlayTextShow, &ButtonSwitch::toggled, this, &ATVModGUI::on_overlayTextShow_toggled);
 | 
						|
    QObject::connect(ui->overlayText, &QLineEdit::textEdited, this, &ATVModGUI::on_overlayText_textEdited);
 | 
						|
}
 | 
						|
 | 
						|
void ATVModGUI::updateAbsoluteCenterFrequency()
 | 
						|
{
 | 
						|
    setStatusFrequency(m_deviceCenterFrequency + m_settings.m_inputFrequencyOffset);
 | 
						|
}
 |