/* * This file is part of the DSView project. * DSView is based on PulseView. * * Copyright (C) 2016 DreamSourceLab * * 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 #include #include #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) : DSDialog(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 s, _session.get_signals()) { boost::shared_ptr dsoSig; if (dsoSig = dynamic_pointer_cast(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 windows; std::vector length; std::vector view_modes; std::vector dbv_ranges; BOOST_FOREACH(const boost::shared_ptr t, _session.get_math_signals()) { boost::shared_ptr mathTrace; if (mathTrace = dynamic_pointer_cast(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 (unsigned int i = 0; i < windows.size(); i++) { _window_combobox->addItem(windows[i], qVariantFromValue(i)); } for (unsigned 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 (unsigned int i = 0; i < view_modes.size(); i++) { _view_combobox->addItem(view_modes[i], qVariantFromValue(i)); } assert(_view_combobox->count() > 0); _view_combobox->setCurrentIndex(_view_combobox->count()-1); for (unsigned 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 t, _session.get_math_signals()) { boost::shared_ptr mathTrace; if (mathTrace = dynamic_pointer_cast(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).toULongLong()) { _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()); } } } _hint_label = new QLabel(this); QString hint_pic= ":/icons/" + _window_combobox->currentText()+".png"; QPixmap pixmap(hint_pic); _hint_label->setPixmap(pixmap); _glayout = new QGridLayout(); _glayout->setVerticalSpacing(5); _glayout->addWidget(new QLabel(tr("FFT Enable: "), this), 0, 0); _glayout->addWidget(_en_checkbox, 0, 1); _glayout->addWidget(new QLabel(tr("FFT Length: "), this), 1, 0); _glayout->addWidget(_len_combobox, 1, 1); _glayout->addWidget(new QLabel(tr("Sample Interval: "), this), 2, 0); _glayout->addWidget(_interval_combobox, 2, 1); _glayout->addWidget(new QLabel(tr("FFT Source: "), this), 3, 0); _glayout->addWidget(_ch_combobox, 3, 1); _glayout->addWidget(new QLabel(tr("FFT Window: "), this), 4, 0); _glayout->addWidget(_window_combobox, 4, 1); _glayout->addWidget(new QLabel(tr("DC Ignored: "), this), 5, 0); _glayout->addWidget(_dc_checkbox, 5, 1); _glayout->addWidget(new QLabel(tr("Y-axis Mode: "), this), 6, 0); _glayout->addWidget(_view_combobox, 6, 1); _glayout->addWidget(new QLabel(tr("DBV Range: "), this), 7, 0); _glayout->addWidget(_dbv_combobox, 7, 1); _glayout->addWidget(_hint_label, 0, 2, 8, 1); _layout = new QVBoxLayout(); _layout->addLayout(_glayout); _layout->addWidget(&_button_box); layout()->addLayout(_layout); setTitle(tr("FFT Options")); 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))); connect(_session.get_device().get(), SIGNAL(device_updated()), this, SLOT(reject())); } void FftOptions::accept() { using namespace Qt; QDialog::accept(); BOOST_FOREACH(const boost::shared_ptr t, _session.get_math_signals()) { boost::shared_ptr mathTrace; if (mathTrace = dynamic_pointer_cast(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().toUInt()); //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