1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

GLSpectrum: synchronize spectrum running with the GUI spectrum freeze button. Fixes issue #561

This commit is contained in:
f4exb
2020-07-10 00:08:42 +02:00
parent f455d0b984
commit 252156ccbf
3 changed files with 26 additions and 9 deletions
+17 -9
View File
@@ -626,12 +626,24 @@ void SpectrumVis::feed(const SampleVector::const_iterator& cbegin, const SampleV
void SpectrumVis::start()
{
m_running = true;
setRunning(true);
if (getMessageQueueToGUI()) // propagate to GUI if any
{
MsgStartStop *msg = MsgStartStop::create(true);
getMessageQueueToGUI()->push(msg);
}
}
void SpectrumVis::stop()
{
m_running = false;
setRunning(false);
if (getMessageQueueToGUI()) // propagate to GUI if any
{
MsgStartStop *msg = MsgStartStop::create(false);
getMessageQueueToGUI()->push(msg);
}
}
bool SpectrumVis::handleMessage(const Message& message)
@@ -670,14 +682,10 @@ bool SpectrumVis::handleMessage(const Message& message)
handleConfigureWSSpectrum(conf.getAddress(), conf.getPort());
return true;
}
else if (MsgStartStop::match(message)) {
else if (MsgStartStop::match(message))
{
MsgStartStop& cmd = (MsgStartStop&) message;
if (cmd.getStartStop()) {
start();
} else {
stop();
}
setRunning(cmd.getStartStop());
return true;
}