forked from miek/inspectrum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
104 lines (84 loc) · 3.66 KB
/
mainwindow.cpp
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
/*
* 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 <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();
plots = new PlotView(input);
setCentralWidget(plots);
// Connect dock inputs
connect(dock, SIGNAL(openFile(QString)), this, SLOT(openFile(QString)));
connect(dock->sampleRate, SIGNAL(textChanged(QString)), this, SLOT(setSampleRate(QString)));
connect(dock, SIGNAL(fftOrZoomChanged(int, int)), plots, SLOT(setFFTAndZoom(int, int)));
connect(dock->powerMaxSlider, SIGNAL(valueChanged(int)), plots, SLOT(setPowerMax(int)));
connect(dock->powerMinSlider, SIGNAL(valueChanged(int)), plots, SLOT(setPowerMin(int)));
connect(dock->cursorsCheckBox, &QCheckBox::stateChanged, plots, &PlotView::enableCursors);
connect(dock->scalesCheckBox, &QCheckBox::stateChanged, plots, &PlotView::enableScales);
connect(dock->cursorSymbolsSpinBox, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), plots, &PlotView::setCursorSegments);
// Connect dock outputs
connect(plots, SIGNAL(timeSelectionChanged(float)), dock, SLOT(timeSelectionChanged(float)));
connect(plots, SIGNAL(zoomIn()), dock, SLOT(zoomIn()));
connect(plots, SIGNAL(zoomOut()), dock, SLOT(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);
}
}
input->openFile(fileName.toUtf8().constData());
}
void MainWindow::setSampleRate(QString rate)
{
int sampleRate = rate.toInt();
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(int rate)
{
dock->sampleRate->setText(QString::number(rate));
}