forked from Ivasoft/DSView
257 lines
9.7 KiB
C++
257 lines
9.7 KiB
C++
/*
|
|
* This file is part of the DSView project.
|
|
* DSView is based on PulseView.
|
|
*
|
|
* Copyright (C) 2016 DreamSourceLab <support@dreamsourcelab.com>
|
|
*
|
|
* 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 2 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, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
|
|
#include "fftoptions.h"
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
#include <QFormLayout>
|
|
#include <QListWidget>
|
|
#include <QMessageBox>
|
|
|
|
#include "../sigsession.h"
|
|
#include "../data/mathstack.h"
|
|
#include "../view/trace.h"
|
|
#include "../view/dsosignal.h"
|
|
#include "../view/mathtrace.h"
|
|
|
|
using namespace boost;
|
|
using namespace std;
|
|
|
|
namespace pv {
|
|
namespace dialogs {
|
|
|
|
FftOptions::FftOptions(QWidget *parent, SigSession &session) :
|
|
QDialog(parent),
|
|
_session(session),
|
|
_button_box(QDialogButtonBox::Ok | QDialogButtonBox::Cancel,
|
|
Qt::Horizontal, this)
|
|
{
|
|
_en_checkbox = new QCheckBox(this);
|
|
_len_combobox = new QComboBox(this);
|
|
_interval_combobox = new QComboBox(this);
|
|
_ch_combobox = new QComboBox(this);
|
|
_window_combobox = new QComboBox(this);
|
|
_dc_checkbox = new QCheckBox(this);
|
|
_dc_checkbox->setChecked(true);
|
|
_view_combobox = new QComboBox(this);
|
|
_dbv_combobox = new QComboBox(this);
|
|
|
|
// setup _ch_combobox
|
|
BOOST_FOREACH(const boost::shared_ptr<view::Signal> s, _session.get_signals()) {
|
|
boost::shared_ptr<view::DsoSignal> dsoSig;
|
|
if (dsoSig = dynamic_pointer_cast<view::DsoSignal>(s)) {
|
|
_ch_combobox->addItem(dsoSig->get_name(), qVariantFromValue(dsoSig->get_index()));
|
|
}
|
|
}
|
|
|
|
// setup _window_combobox _len_combobox
|
|
_sample_limit = 0;
|
|
GVariant* gvar = _session.get_device()->get_config(NULL, NULL, SR_CONF_MAX_DSO_SAMPLELIMITS);
|
|
if (gvar != NULL) {
|
|
_sample_limit = g_variant_get_uint64(gvar) * 0.5;
|
|
g_variant_unref(gvar);
|
|
} else {
|
|
qDebug() << "ERROR: config_get SR_CONF_MAX_DSO_SAMPLELIMITS failed.";
|
|
}
|
|
std::vector<QString> windows;
|
|
std::vector<uint64_t> length;
|
|
std::vector<QString> view_modes;
|
|
std::vector<int> dbv_ranges;
|
|
BOOST_FOREACH(const boost::shared_ptr<view::Trace> t, _session.get_math_signals()) {
|
|
boost::shared_ptr<view::MathTrace> mathTrace;
|
|
if (mathTrace = dynamic_pointer_cast<view::MathTrace>(t)) {
|
|
windows = mathTrace->get_math_stack()->get_windows_support();
|
|
length = mathTrace->get_math_stack()->get_length_support();
|
|
view_modes = mathTrace->get_view_modes_support();
|
|
dbv_ranges = mathTrace->get_dbv_ranges();
|
|
break;
|
|
}
|
|
}
|
|
assert(windows.size() > 0);
|
|
assert(length.size() > 0);
|
|
assert(view_modes.size() > 0);
|
|
assert(dbv_ranges.size() > 0);
|
|
for (int i = 0; i < windows.size(); i++)
|
|
{
|
|
_window_combobox->addItem(windows[i],
|
|
qVariantFromValue(i));
|
|
}
|
|
for (int i = 0; i < length.size(); i++)
|
|
{
|
|
if (length[i] < _sample_limit)
|
|
_len_combobox->addItem(QString::number(length[i]),
|
|
qVariantFromValue(length[i]));
|
|
else
|
|
break;
|
|
}
|
|
assert(_len_combobox->count() > 0);
|
|
_len_combobox->setCurrentIndex(_len_combobox->count()-1);
|
|
|
|
const int max_interval = _sample_limit/_len_combobox->currentData().toLongLong();
|
|
for (int i = 1; i <= max_interval; i*=2)
|
|
{
|
|
_interval_combobox->addItem(QString::number(i),
|
|
qVariantFromValue(i));
|
|
}
|
|
for (int i = 0; i < view_modes.size(); i++)
|
|
{
|
|
_view_combobox->addItem(view_modes[i],
|
|
qVariantFromValue(i));
|
|
}
|
|
for (int i = 0; i < dbv_ranges.size(); i++)
|
|
{
|
|
_dbv_combobox->addItem(QString::number(dbv_ranges[i]),
|
|
qVariantFromValue(dbv_ranges[i]));
|
|
}
|
|
|
|
// load current settings
|
|
BOOST_FOREACH(const boost::shared_ptr<view::Trace> t, _session.get_math_signals()) {
|
|
boost::shared_ptr<view::MathTrace> mathTrace;
|
|
if (mathTrace = dynamic_pointer_cast<view::MathTrace>(t)) {
|
|
if (mathTrace->enabled()) {
|
|
_en_checkbox->setChecked(true);
|
|
for (int i = 0; i < _ch_combobox->count(); i++) {
|
|
if (mathTrace->get_index() == _ch_combobox->itemData(i).toInt()) {
|
|
_ch_combobox->setCurrentIndex(i);
|
|
break;
|
|
}
|
|
}
|
|
for (int i = 0; i < _len_combobox->count(); i++) {
|
|
if (mathTrace->get_math_stack()->get_sample_num() == _len_combobox->itemData(i).toLongLong()) {
|
|
_len_combobox->setCurrentIndex(i);
|
|
break;
|
|
}
|
|
}
|
|
_interval_combobox->clear();
|
|
const int max_interval = _sample_limit/_len_combobox->currentData().toLongLong();
|
|
for (int i = 1; i <= max_interval; i*=2)
|
|
{
|
|
_interval_combobox->addItem(QString::number(i),
|
|
qVariantFromValue(i));
|
|
}
|
|
for (int i = 0; i < _interval_combobox->count(); i++) {
|
|
if (mathTrace->get_math_stack()->get_sample_interval() == _interval_combobox->itemData(i).toInt()) {
|
|
_interval_combobox->setCurrentIndex(i);
|
|
break;
|
|
}
|
|
}
|
|
for (int i = 0; i < _dbv_combobox->count(); i++) {
|
|
if (mathTrace->dbv_range() == _dbv_combobox->itemData(i).toLongLong()) {
|
|
_dbv_combobox->setCurrentIndex(i);
|
|
break;
|
|
}
|
|
}
|
|
_window_combobox->setCurrentIndex(mathTrace->get_math_stack()->get_windows_index());
|
|
_dc_checkbox->setChecked(mathTrace->get_math_stack()->dc_ignored());
|
|
_view_combobox->setCurrentIndex(mathTrace->view_mode());
|
|
}
|
|
}
|
|
}
|
|
|
|
_flayout = new QFormLayout();
|
|
_flayout->addRow(new QLabel(tr("FFT Enable: "), this), _en_checkbox);
|
|
_flayout->addRow(new QLabel(tr("FFT Length: "), this), _len_combobox);
|
|
_flayout->addRow(new QLabel(tr("Sample Interval: "), this), _interval_combobox);
|
|
_flayout->addRow(new QLabel(tr("FFT Source: "), this), _ch_combobox);
|
|
_flayout->addRow(new QLabel(tr("FFT Window: "), this), _window_combobox);
|
|
_flayout->addRow(new QLabel(tr("DC Ignored: "), this), _dc_checkbox);
|
|
_flayout->addRow(new QLabel(tr("Y-axis Mode: "), this), _view_combobox);
|
|
_flayout->addRow(new QLabel(tr("DBV Range: "), this), _dbv_combobox);
|
|
|
|
_hlayout = new QHBoxLayout();
|
|
_hlayout->addLayout(_flayout);
|
|
_hint_label = new QLabel(this);
|
|
QString hint_pic= ":/icons/" + _window_combobox->currentText()+".png";
|
|
QPixmap pixmap(hint_pic);
|
|
_hint_label->setPixmap(pixmap);
|
|
_hlayout->addWidget(_hint_label);
|
|
|
|
_layout = new QVBoxLayout(this);
|
|
_layout->addLayout(_hlayout);
|
|
_layout->addWidget(&_button_box);
|
|
setLayout(_layout);
|
|
|
|
connect(&_button_box, SIGNAL(accepted()), this, SLOT(accept()));
|
|
connect(&_button_box, SIGNAL(rejected()), this, SLOT(reject()));
|
|
connect(_window_combobox, SIGNAL(currentIndexChanged(QString)), this, SLOT(window_changed(QString)));
|
|
connect(_len_combobox, SIGNAL(currentIndexChanged(int)), this, SLOT(len_changed(int)));
|
|
}
|
|
|
|
void FftOptions::accept()
|
|
{
|
|
using namespace Qt;
|
|
|
|
QDialog::accept();
|
|
|
|
BOOST_FOREACH(const boost::shared_ptr<view::Trace> t, _session.get_math_signals()) {
|
|
boost::shared_ptr<view::MathTrace> mathTrace;
|
|
if (mathTrace = dynamic_pointer_cast<view::MathTrace>(t)) {
|
|
mathTrace->set_enable(false);
|
|
if (mathTrace->get_index() == _ch_combobox->currentData().toInt()) {
|
|
mathTrace->get_math_stack()->set_dc_ignore(_dc_checkbox->isChecked());
|
|
mathTrace->get_math_stack()->set_sample_num(_len_combobox->currentData().toULongLong());
|
|
mathTrace->get_math_stack()->set_sample_interval(_interval_combobox->currentData().toInt());
|
|
mathTrace->get_math_stack()->set_windows_index(_window_combobox->currentData().toInt());
|
|
mathTrace->set_view_mode(_view_combobox->currentData().toInt());
|
|
//mathTrace->init_zoom();
|
|
mathTrace->set_dbv_range(_dbv_combobox->currentData().toInt());
|
|
mathTrace->set_enable(_en_checkbox->isChecked());
|
|
if (_session.get_capture_state() == SigSession::Stopped &&
|
|
mathTrace->enabled())
|
|
mathTrace->get_math_stack()->calc_fft();
|
|
}
|
|
}
|
|
}
|
|
_session.mathTraces_rebuild();
|
|
}
|
|
|
|
void FftOptions::reject()
|
|
{
|
|
using namespace Qt;
|
|
|
|
QDialog::reject();
|
|
}
|
|
|
|
void FftOptions::window_changed(QString str)
|
|
{
|
|
QString hint_pic= ":/icons/" + str +".png";
|
|
QPixmap pixmap(hint_pic);
|
|
_hint_label->setPixmap(pixmap);
|
|
}
|
|
|
|
void FftOptions::len_changed(int index)
|
|
{
|
|
int pre_index = _interval_combobox->currentIndex();
|
|
_interval_combobox->clear();
|
|
const int max_interval = _sample_limit/_len_combobox->itemData(index).toLongLong();
|
|
for (int i = 1; i <= max_interval; i*=2)
|
|
{
|
|
_interval_combobox->addItem(QString::number(i),
|
|
qVariantFromValue(i));
|
|
}
|
|
_interval_combobox->setCurrentIndex(pre_index);
|
|
}
|
|
|
|
} // namespace dialogs
|
|
} // namespace pv
|