1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
|
/* -*- c++ -*- */
/*
* Gqrx SDR: Software defined radio receiver powered by GNU Radio and Qt
* http://gqrx.dk/
*
* Copyright 2011-2013 Alexandru Csete OZ9AEC.
*
* Gqrx 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; either version 3, or (at your option)
* any later version.
*
* Gqrx 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 for more details.
*
* You should have received a copy of the GNU General Public License
* along with Gqrx; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#include <QDebug>
#include <QDateTime>
#include <QDir>
#include "dockaudio.h"
#include "ui_dockaudio.h"
DockAudio::DockAudio(QWidget *parent) :
QDockWidget(parent),
ui(new Ui::DockAudio),
autoSpan(true),
rx_freq(144000000)
{
ui->setupUi(this);
#ifdef Q_WS_MAC
// Workaround for Mac, see http://stackoverflow.com/questions/3978889/why-is-qhboxlayout-causing-widgets-to-overlap
// Might be fixed in Qt 5?
ui->audioPlayButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
ui->audioRecButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
ui->audioConfButton->setAttribute(Qt::WA_LayoutUsesWidgetRect);
#endif
audioOptions = new CAudioOptions(this);
connect(audioOptions, SIGNAL(newRecDirSelected(QString)), this, SLOT(setNewRecDir(QString)));
connect(audioOptions, SIGNAL(newUdpHost(QString)), this, SLOT(setNewUdpHost(QString)));
connect(audioOptions, SIGNAL(newUdpPort(int)), this, SLOT(setNewUdpPort(int)));
ui->audioSpectrum->setPercent2DScreen(100);
ui->audioSpectrum->setFreqUnits(1000);
ui->audioSpectrum->setSampleRate(48000); // Full bandwidth
ui->audioSpectrum->setSpanFreq(12000);
ui->audioSpectrum->setCenterFreq(0);
ui->audioSpectrum->setFftCenterFreq(6000);
ui->audioSpectrum->setDemodCenterFreq(0);
ui->audioSpectrum->setFilterBoxEnabled(false);
ui->audioSpectrum->setCenterLineEnabled(false);
ui->audioSpectrum->setMinMaxDB(-120, 0);
ui->audioSpectrum->setFontSize(8);
ui->audioSpectrum->setVdivDelta(20);
ui->audioSpectrum->setHdivDelta(25);
ui->audioSpectrum->setFreqDigits(1);
}
DockAudio::~DockAudio()
{
delete ui;
}
void DockAudio::setFftRange(quint64 minf, quint64 maxf)
{
if (autoSpan)
{
qint32 span = (qint32)(maxf - minf);
quint64 fc = minf + (maxf - minf)/2;
ui->audioSpectrum->setFftCenterFreq(fc);
ui->audioSpectrum->setSpanFreq(span);
ui->audioSpectrum->setCenterFreq(0);
}
}
void DockAudio::setNewFttData(double *fftData, int size)
{
ui->audioSpectrum->setNewFttData(fftData, size);
}
/*! \brief Set new audio gain.
* \param gain the new audio gain in tens of dB (0 dB = 10)
*/
void DockAudio::setAudioGain(int gain)
{
ui->audioGainSlider->setValue(gain);
}
/*! \brief Get current audio gain.
* \returns The current audio gain in tens of dB (0 dB = 10).
*/
int DockAudio::audioGain()
{
return ui->audioGainSlider->value();
}
/*! Set FFT plot color. */
void DockAudio::setFftColor(QColor color)
{
ui->audioSpectrum->setFftPlotColor(color);
}
/*! Enable/disable filling area under FFT plot. */
void DockAudio::setFftFill(bool enabled)
{
ui->audioSpectrum->setFftFill(enabled);
}
/*! Public slot to trig audio recording by external events (e.g. satellite AOS).
*
* If a recording is already in progress we ignore the event.
*/
void DockAudio::startAudioRecorder(void)
{
if (ui->audioRecButton->isChecked())
{
qDebug() << __func__ << "An audio recording is already in progress";
return;
}
// emulate a button click
ui->audioRecButton->click();
}
/*! Public slot to stop audio recording by external events (e.g. satellite LOS).
*
* The event is ignored if no audio recording is in progress.
*/
void DockAudio::stopAudioRecorder(void)
{
if (ui->audioRecButton->isChecked())
ui->audioRecButton->click(); // emulate a button click
else
qDebug() << __func__ << "No audio recording in progress";
}
/*! Public slot to set new RX frequency in Hz. */
void DockAudio::setRxFrequency(qint64 freq)
{
rx_freq = freq;
}
/*! \brief Audio gain changed.
* \param value The new audio gain value in tens of dB (because slider uses int)
*/
void DockAudio::on_audioGainSlider_valueChanged(int value)
{
float gain = float(value) / 10.0;
// update dB label
ui->audioGainDbLabel->setText(QString("%1 dB").arg(gain));
emit audioGainChanged(gain);
}
/*! \brief Streaming button clicked.
* \param checked Whether streaming is ON or OFF.
*/
void DockAudio::on_audioStreamButton_clicked(bool checked)
{
if (checked)
emit audioStreamingStarted(udp_host, udp_port);
else
emit audioStreamingStopped();
}
/*! \brief Record button clicked.
* \param checked Whether recording is ON or OFF.
*
* We use the clicked signal instead of the toggled which allows us to change the
* state programatically using toggle() without triggering the signal.
*/
void DockAudio::on_audioRecButton_clicked(bool checked)
{
if (checked) {
// FIXME: option to use local time
// use toUTC() function compatible with older versions of Qt.
QString file_name = QDateTime::currentDateTime().toUTC().toString("gqrx_yyyyMMdd_hhmmss");
last_audio = QString("%1/%2_%3.wav").arg(rec_dir).arg(file_name).arg(rx_freq);
// emit signal and start timer
emit audioRecStarted(last_audio);
ui->audioRecButton->setToolTip(tr("Stop audio recorder"));
ui->audioPlayButton->setEnabled(false); /* prevent playback while recording */
}
else {
ui->audioRecButton->setToolTip(tr("Start audio recorder"));
emit audioRecStopped();
ui->audioPlayButton->setEnabled(true);
}
}
/*! \brief Playback button clicked.
* \param checked Whether playback is ON or OFF.
*
* We use the clicked signal instead of the toggled which allows us to change the
* state programatically using toggle() without triggering the signal.
*/
void DockAudio::on_audioPlayButton_clicked(bool checked)
{
if (checked) {
// emit signal and start timer
emit audioPlayStarted(last_audio);
ui->audioRecLabel->setText(QFileInfo(last_audio).fileName());
ui->audioPlayButton->setToolTip(tr("Stop audio playback"));
ui->audioRecButton->setEnabled(false); // prevent recording while we play
}
else {
ui->audioRecLabel->setText("<i>DSP</i>");
ui->audioPlayButton->setToolTip(tr("Start playback of last recorded audio file"));
emit audioPlayStopped();
ui->audioRecButton->setEnabled(true);
}
}
/*! \brief Configure button clicked. */
void DockAudio::on_audioConfButton_clicked()
{
audioOptions->show();
}
/*! \brief Set status of audio record button. */
void DockAudio::setAudioRecButtonState(bool checked)
{
if (checked == ui->audioRecButton->isChecked()) {
/* nothing to do */
return;
}
// toggle the button and set the state of the other buttons accordingly
ui->audioRecButton->toggle();
bool isChecked = ui->audioRecButton->isChecked();
ui->audioRecButton->setToolTip(isChecked ? tr("Stop audio recorder") : tr("Start audio recorder"));
ui->audioPlayButton->setEnabled(!isChecked);
//ui->audioRecConfButton->setEnabled(!isChecked);
}
/*! \brief Set status of audio record button. */
void DockAudio::setAudioPlayButtonState(bool checked)
{
if (checked == ui->audioPlayButton->isChecked()) {
// nothing to do
return;
}
// toggle the button and set the state of the other buttons accordingly
ui->audioPlayButton->toggle();
bool isChecked = ui->audioPlayButton->isChecked();
ui->audioPlayButton->setToolTip(isChecked ? tr("Stop audio playback") : tr("Start playback of last recorded audio file"));
ui->audioRecButton->setEnabled(!isChecked);
//ui->audioRecConfButton->setEnabled(!isChecked);
}
void DockAudio::saveSettings(QSettings *settings)
{
if (!settings)
return;
settings->setValue("audio/gain", audioGain());
if (rec_dir != QDir::homePath())
settings->setValue("audio/rec_dir", rec_dir);
else
settings->remove("audio/rec_dir");
if ((udp_host != "localhost") && (udp_host != "127.0.0.1"))
settings->setValue("audio/udp_host", udp_host);
else
settings->remove("audio/udp_host");
if (udp_port != 7355)
settings->setValue("audio/udp_port", udp_port);
else
settings->remove("audio/udp_port");
}
void DockAudio::readSettings(QSettings *settings)
{
if (!settings)
return;
bool conv_ok = false;
int gain = settings->value("audio/gain", QVariant(-200)).toInt(&conv_ok);
if (conv_ok)
setAudioGain(gain);
// Location of audio recordings
rec_dir = settings->value("audio/rec_dir", QDir::homePath()).toString();
audioOptions->setRecDir(rec_dir);
// Audio streaming host and port
udp_host = settings->value("audio/udp_host", "localhost").toString();
udp_port = settings->value("audio/udp_port", 7355).toInt(&conv_ok);
if (!conv_ok)
udp_port = 7355;
audioOptions->setUdpHost(udp_host);
audioOptions->setUdpPort(udp_port);
}
/*! \brief Slot called when a new valid recording directory has been selected
* in the audio conf dialog.
*/
void DockAudio::setNewRecDir(const QString &dir)
{
rec_dir = dir;
}
/*! \brief Slot called when a new network host has been entered. */
void DockAudio::setNewUdpHost(const QString &host)
{
if (host.isEmpty())
udp_host = "localhost";
else
udp_host = host;
}
/*! \brief Slot called when a new network port has been entered. */
void DockAudio::setNewUdpPort(int port)
{
udp_port = port;
}
|