/* * 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 "../sigsession.h" #include "../data/spectrumstack.h" #include "../view/trace.h" #include "../view/dsosignal.h" #include "../view/spectrumtrace.h" #include "../dsvdef.h" #include "../log.h" #include "../ui/langresource.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) { _len_combobox = NULL; _interval_combobox = NULL; _en_checkbox = NULL; _ch_combobox = NULL; _window_combobox = NULL; _dc_checkbox = NULL; _view_combobox = NULL; _dbv_combobox = NULL; _hint_label = NULL; _glayout = NULL; _layout = NULL; _en_checkbox = new QCheckBox(this); _len_combobox = new DsComboBox(this); _interval_combobox = new DsComboBox(this); _ch_combobox = new DsComboBox(this); _window_combobox = new DsComboBox(this); _dc_checkbox = new QCheckBox(this); _dc_checkbox->setChecked(true); _view_combobox = new DsComboBox(this); _dbv_combobox = new DsComboBox(this); // setup _ch_combobox for(auto s : _session->get_signals()) { if (s->signal_type() == DSO_SIGNAL) { view::DsoSignal *dsoSig = (view::DsoSignal*)s; _ch_combobox->addItem(dsoSig->get_name(), QVariant::fromValue(dsoSig->get_index())); } } // setup _window_combobox _len_combobox _sample_limit = 0; if (_session->get_device()->get_config_uint64(SR_CONF_MAX_DSO_SAMPLELIMITS, _sample_limit)) { _sample_limit = _sample_limit * 0.5; } else { dsv_err("%s", "ERROR: config_get SR_CONF_MAX_DSO_SAMPLELIMITS failed."); } std::vector windows; std::vector length; std::vector view_modes; std::vector dbv_ranges; for(auto t : _session->get_spectrum_traces()) { view::SpectrumTrace *spectrumTraces = NULL; if ((spectrumTraces = dynamic_cast(t))) { windows = spectrumTraces->get_spectrum_stack()->get_windows_support(); length = spectrumTraces->get_spectrum_stack()->get_length_support(); view_modes = spectrumTraces->get_view_modes_support(); dbv_ranges = spectrumTraces->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], QVariant::fromValue(i)); } for (unsigned int i = 0; i < length.size(); i++) { if (length[i] < _sample_limit) _len_combobox->addItem(QString::number(length[i]), QVariant::fromValue(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), QVariant::fromValue(i)); } for (unsigned int i = 0; i < view_modes.size(); i++) { _view_combobox->addItem(view_modes[i], QVariant::fromValue(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]), QVariant::fromValue(dbv_ranges[i])); } // load current settings for(auto t : _session->get_spectrum_traces()) { view::SpectrumTrace *spectrumTraces = NULL; if ((spectrumTraces = dynamic_cast(t))) { if (spectrumTraces->enabled()) { _en_checkbox->setChecked(true); for (int i = 0; i < _ch_combobox->count(); i++) { if (spectrumTraces->get_index() == _ch_combobox->itemData(i).toInt()) { _ch_combobox->setCurrentIndex(i); break; } } for (int i = 0; i < _len_combobox->count(); i++) { if (spectrumTraces->get_spectrum_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), QVariant::fromValue(i)); } for (int i = 0; i < _interval_combobox->count(); i++) { if (spectrumTraces->get_spectrum_stack()->get_sample_interval() == _interval_combobox->itemData(i).toInt()) { _interval_combobox->setCurrentIndex(i); break; } } for (int i = 0; i < _dbv_combobox->count(); i++) { if (spectrumTraces->dbv_range() == _dbv_combobox->itemData(i).toLongLong()) { _dbv_combobox->setCurrentIndex(i); break; } } _window_combobox->setCurrentIndex(spectrumTraces->get_spectrum_stack()->get_windows_index()); _dc_checkbox->setChecked(spectrumTraces->get_spectrum_stack()->dc_ignored()); _view_combobox->setCurrentIndex(spectrumTraces->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(); //QGridLayout _glayout->setVerticalSpacing(5); _glayout->addWidget(new QLabel(L_S(STR_PAGE_DLG, S_ID(IDS_DLG_FFT_ENABLE), "FFT Enable: "), this), 0, 0); _glayout->addWidget(_en_checkbox, 0, 1); _glayout->addWidget(new QLabel(L_S(STR_PAGE_DLG, S_ID(IDS_DLG_FFT_LENGTH), "FFT Length: "), this), 1, 0); _glayout->addWidget(_len_combobox, 1, 1); _glayout->addWidget(new QLabel(L_S(STR_PAGE_DLG, S_ID(IDS_DLG_SAMPLE_INTERVAL), "Sample Interval: "), this), 2, 0); _glayout->addWidget(_interval_combobox, 2, 1); _glayout->addWidget(new QLabel(L_S(STR_PAGE_DLG, S_ID(IDS_DLG_FFT_SOURCE), "FFT Source: "), this), 3, 0); _glayout->addWidget(_ch_combobox, 3, 1); _glayout->addWidget(new QLabel(L_S(STR_PAGE_DLG, S_ID(IDS_DLG_FFT_WINDOW), "FFT Window: "), this), 4, 0); _glayout->addWidget(_window_combobox, 4, 1); _glayout->addWidget(new QLabel(L_S(STR_PAGE_DLG, S_ID(IDS_DLG_DC_IGNORED), "DC Ignored: "), this), 5, 0); _glayout->addWidget(_dc_checkbox, 5, 1); _glayout->addWidget(new QLabel(L_S(STR_PAGE_DLG, S_ID(IDS_DLG_Y-AXIS_MODE), "Y-axis Mode: "), this), 6, 0); _glayout->addWidget(_view_combobox, 6, 1); _glayout->addWidget(new QLabel(L_S(STR_PAGE_DLG, S_ID(IDS_DLG_DBV_RANGE), "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(L_S(STR_PAGE_DLG, S_ID(IDS_DLG_FFT_OPTIONS), "FFT Options")); connect(&_button_box, SIGNAL(accepted()), this, SLOT(accept())); connect(&_button_box, SIGNAL(rejected()), this, SLOT(reject())); connect(_window_combobox, SIGNAL(currentIndexChanged(int)), this, SLOT(window_changed(int))); connect(_len_combobox, SIGNAL(currentIndexChanged(int)), this, SLOT(len_changed(int))); connect(_session->device_event_object(), SIGNAL(device_updated()), this, SLOT(reject())); } FftOptions::~FftOptions(){ } void FftOptions::accept() { using namespace Qt; QDialog::accept(); for(auto t : _session->get_spectrum_traces()) { view::SpectrumTrace *spectrumTraces = NULL; if ((spectrumTraces = dynamic_cast(t))) { spectrumTraces->set_enable(false); if (spectrumTraces->get_index() == _ch_combobox->currentData().toInt()) { spectrumTraces->get_spectrum_stack()->set_dc_ignore(_dc_checkbox->isChecked()); spectrumTraces->get_spectrum_stack()->set_sample_num(_len_combobox->currentData().toULongLong()); spectrumTraces->get_spectrum_stack()->set_sample_interval(_interval_combobox->currentData().toInt()); spectrumTraces->get_spectrum_stack()->set_windows_index(_window_combobox->currentData().toInt()); spectrumTraces->set_view_mode(_view_combobox->currentData().toUInt()); spectrumTraces->set_dbv_range(_dbv_combobox->currentData().toInt()); spectrumTraces->set_enable(_en_checkbox->isChecked()); if (_session->is_stopped_status() && spectrumTraces->enabled()){ spectrumTraces->get_spectrum_stack()->calc_fft(); } } } } _session->spectrum_rebuild(); } void FftOptions::reject() { using namespace Qt; QDialog::reject(); } void FftOptions::window_changed(int index) { QString str = _window_combobox->itemText(index); 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), QVariant::fromValue(i)); } _interval_combobox->setCurrentIndex(pre_index); } } // namespace dialogs } // namespace pv