forked from miek/inspectrum
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmainwindow.cpp
More file actions
137 lines (114 loc) · 5.14 KB
/
mainwindow.cpp
File metadata and controls
137 lines (114 loc) · 5.14 KB
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
/*
* Copyright (C) 2015, Mike Walters <mike@flomp.net>
*
* This file is part of inspectrum.
*
* 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, either 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 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 <QMessageBox>
#include <QtWidgets>
#include <QPixmapCache>
#include <QRubberBand>
#include <sstream>
#include "mainwindow.h"
#include "util.h"
MainWindow::MainWindow()
{
setWindowTitle(tr("inspectrum"));
QPixmapCache::setCacheLimit(40960);
dock = new SpectrogramControls(tr("Controls"), this);
dock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
addDockWidget(Qt::LeftDockWidgetArea, dock);
input = new InputSource();
input->subscribe(this);
plots = new PlotView(input);
setCentralWidget(plots);
// Connect dock inputs
connect(dock, &SpectrogramControls::openFile, this, &MainWindow::openFile);
connect(dock->sampleRate, static_cast<void (QLineEdit::*)(const QString&)>(&QLineEdit::textChanged), this, static_cast<void (MainWindow::*)(QString)>(&MainWindow::setSampleRate));
connect(dock, static_cast<void (SpectrogramControls::*)(int, int)>(&SpectrogramControls::fftOrZoomChanged), plots, &PlotView::setFFTAndZoom);
connect(dock->powerMaxSlider, &QSlider::valueChanged, plots, &PlotView::setPowerMax);
connect(dock->powerMinSlider, &QSlider::valueChanged, plots, &PlotView::setPowerMin);
connect(dock->cursorsCheckBox, &QCheckBox::stateChanged, plots, &PlotView::enableCursors);
connect(dock->scalesCheckBox, &QCheckBox::stateChanged, plots, &PlotView::enableScales);
connect(dock->annosCheckBox, &QCheckBox::stateChanged, plots, &PlotView::enableAnnotations);
connect(dock->annosCheckBox, &QCheckBox::stateChanged, dock, &SpectrogramControls::enableAnnotations);
connect(dock->annoLabelCheckBox, &QCheckBox::stateChanged, plots, &PlotView::enableAnnoLabels);
connect(dock->commentsCheckBox, &QCheckBox::stateChanged, plots, &PlotView::enableAnnotationCommentsTooltips);
connect(dock->annoColorCheckBox, &QCheckBox::stateChanged, plots, &PlotView::enableAnnoColors);
connect(dock->cursorSymbolsSpinBox, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), plots, &PlotView::setCursorSegments);
// Connect dock outputs
connect(plots, &PlotView::timeSelectionChanged, dock, &SpectrogramControls::timeSelectionChanged);
connect(plots, &PlotView::zoomIn, dock, &SpectrogramControls::zoomIn);
connect(plots, &PlotView::zoomOut, dock, &SpectrogramControls::zoomOut);
// Set defaults after making connections so everything is in sync
dock->setDefaults();
}
void MainWindow::openFile(QString fileName)
{
QString title="%1: %2";
this->setWindowTitle(title.arg(QApplication::applicationName(),fileName.section('/',-1,-1)));
// Try to parse osmocom_fft filenames and extract the sample rate and center frequency.
// Example file name: "name-f2.411200e+09-s5.000000e+06-t20160807180210.cfile"
QRegExp rx("(.*)-f(.*)-s(.*)-.*\\.cfile");
QString basename = fileName.section('/',-1,-1);
if (rx.exactMatch(basename)) {
QString centerfreq = rx.cap(2);
QString samplerate = rx.cap(3);
std::stringstream ss(samplerate.toUtf8().constData());
// Needs to be a double as the number is in scientific format
double rate;
ss >> rate;
if (!ss.fail()) {
setSampleRate(rate);
}
}
try
{
input->openFile(fileName.toUtf8().constData());
}
catch (const std::exception &ex)
{
QMessageBox msgBox(QMessageBox::Critical, "Inspectrum openFile error", QString("%1: %2").arg(fileName).arg(ex.what()));
msgBox.exec();
}
}
void MainWindow::invalidateEvent()
{
plots->setSampleRate(input->rate());
// Only update the text box if it is not already representing
// the current value. Otherwise the cursor might jump or the
// representation might change (e.g. to scientific).
double currentValue = dock->sampleRate->text().toDouble();
if(QString::number(input->rate()) != QString::number(currentValue)) {
setSampleRate(input->rate());
}
}
void MainWindow::setSampleRate(QString rate)
{
auto sampleRate = rate.toDouble();
input->setSampleRate(sampleRate);
plots->setSampleRate(sampleRate);
// Save the sample rate in settings as we're likely to be opening the same file across multiple runs
QSettings settings;
settings.setValue("SampleRate", sampleRate);
}
void MainWindow::setSampleRate(double rate)
{
dock->sampleRate->setText(QString::number(rate));
}
void MainWindow::setFormat(QString fmt)
{
input->setFormat(fmt.toUtf8().constData());
}