LibreVNA/Software/PC_Application/LibreVNA-GUI/Traces/sparamtraceselector.cpp

254 lines
8.6 KiB
C++
Raw Normal View History

2022-10-01 23:10:44 +08:00
#include "sparamtraceselector.h"
#include <QFormLayout>
#include <QLabel>
#include <QCheckBox>
#include <QScrollArea>
#include <QEvent>
#include <QScrollBar>
2022-10-01 23:10:44 +08:00
using namespace std;
SparamTraceSelector::SparamTraceSelector(const TraceModel &model, std::vector<unsigned int> used_ports, bool empty_allowed, unsigned int editablePorts)
2022-10-01 23:10:44 +08:00
: model(model),
2022-10-14 06:27:22 +08:00
empty_allowed(empty_allowed),
used_ports(used_ports),
editablePorts(editablePorts)
2022-10-01 23:10:44 +08:00
{
createGUI();
setInitialChoices();
}
SparamTraceSelector::SparamTraceSelector(const TraceModel &model, std::set<unsigned int> used_ports, bool empty_allowed, unsigned int editablePorts)
2022-10-01 23:10:44 +08:00
: model(model),
empty_allowed(empty_allowed),
editablePorts(editablePorts)
2022-10-01 23:10:44 +08:00
{
// create vector from set
std::copy(used_ports.begin(), used_ports.end(), std::back_inserter(this->used_ports));
createGUI();
setInitialChoices();
}
std::map<QString, Trace*> SparamTraceSelector::getTraces()
{
std::map<QString, Trace*> ret;
for(unsigned int i=0;i<used_ports.size();i++) {
for(unsigned int j=0;j<used_ports.size();j++) {
auto b = boxes[i*used_ports.size()+j];
Trace *t;
if(b->currentIndex() == 0) {
t = nullptr;
} else {
t = qvariant_cast<Trace*>(b->itemData(b->currentIndex()));
}
QString name = "S"+QString::number(used_ports[i])+QString::number(used_ports[j]);
ret[name] = t;
}
}
return ret;
}
void SparamTraceSelector::setInitialChoices()
{
for(unsigned int i=0;i<used_ports.size()*used_ports.size();i++) {
boxes[i]->blockSignals(true);
boxes[i]->clear();
boxes[i]->addItem("None");
for(auto t : model.getTraces()) {
if(t->outputType() != Trace::DataType::Frequency) {
// only frequency domain traces allowed
continue;
}
if(t->size() == 0) {
// can't select empty traces
continue;
}
bool reflectionRequired = i%(used_ports.size()+1) == 0 ? true : false;
if(reflectionRequired != t->isReflection()) {
// invalid S parameter
continue;
}
boxes[i]->addItem(t->name(), QVariant::fromValue<Trace*>(t));
}
boxes[i]->blockSignals(false);
}
minFreq = maxFreq = 0;
2022-10-01 23:10:44 +08:00
points = 0;
valid = empty_allowed;
}
void SparamTraceSelector::traceSelectionChanged(QComboBox *cb)
{
// update available traces in combo boxes
if(cb->currentIndex() != 0 && points == 0) {
// the first trace has been selected, extract frequency info
Trace *t = qvariant_cast<Trace*>(cb->itemData(cb->currentIndex()));
points = t->size();
if(points > 0) {
minFreq = t->minX();
maxFreq = t->maxX();
}
// remove all trace options with incompatible frequencies
for(auto c : boxes) {
if(!c->isVisible()) {
// skip invisible selections
continue;
}
for(int i=1;i<c->count();i++) {
Trace *t = qvariant_cast<Trace*>(c->itemData(i));
if(t->size() != points || (points > 0 && (t->minX() != minFreq || t->maxX() != maxFreq))) {
// this trace is not available anymore
c->removeItem(i);
// decrement to check the next index in the next loop iteration
i--;
}
}
}
// try to find matching traces based on their names (convenient autoselection of matching traces)
auto text = cb->currentText();
text.chop(2);
if(text.endsWith("S")) {
// tracename ended in Sxx, probably other traces with matching prefix available
for(unsigned int i=0;i<used_ports.size()*used_ports.size();i++) {
auto b = boxes[i];
if(b == cb) {
// skip this box
continue;
}
for(int j=0;j<b->count();j++) {
auto candidate = b->itemText(j);
// check if correct parameter
int port1 = used_ports[i/used_ports.size()];
int port2 = used_ports[i%used_ports.size()];
QString expectedSparam = QString::number(port1)+QString::number(port2);
2022-10-01 23:10:44 +08:00
if(!candidate.endsWith(expectedSparam)) {
// wrong S parameter, skip
continue;
}
candidate.chop(2);
if(candidate != text) {
// trace name does not match
continue;
}
// possible match, select for this box
b->setCurrentIndex(j);
break;
}
}
}
} else if(cb->currentIndex() == 0 && points > 0) {
if(!empty_allowed) {
emit selectionValid(false);
}
2022-10-01 23:10:44 +08:00
// Check if all trace selections are set for none
for(auto c : boxes) {
if(!c->isVisible()) {
// skip invisible selections
continue;
}
if(c->currentIndex() != 0) {
// some trace is still selected, abort
return;
}
}
// all traces set for none
points = 0;
minFreq = 0;
maxFreq = 0;
setInitialChoices();
}
if(empty_allowed) {
// always valid as soon as at least one trace is selected
emit selectionValid(points > 0);
2022-10-01 23:10:44 +08:00
} else {
// actually need to check
valid = true;
for(auto c : boxes) {
if(!c->isVisible()) {
// skip invisible selections
continue;
}
if (c->currentIndex() == 0) {
valid = false;
break;
}
}
emit selectionValid(valid);
}
}
void SparamTraceSelector::createGUI()
{
// Create comboboxes
qDeleteAll(findChildren<QWidget *>(QString(), Qt::FindDirectChildrenOnly));
delete layout();
boxes.clear();
auto scroll = new QScrollArea(this);
scroll->installEventFilter(this);
scroll->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
auto w = new QWidget();
auto boxlayout = new QVBoxLayout();
setLayout(boxlayout);
boxlayout->setContentsMargins(0,0,0,0);
boxlayout->addWidget(scroll);
auto formlayout = new QFormLayout;
w->setLayout(formlayout);
for(unsigned int i=1;i<=editablePorts;i++) {
auto label = new QLabel("Include Port "+QString::number(i)+":");
auto cb = new QCheckBox();
if(std::find(used_ports.begin(), used_ports.end(), i) != used_ports.end()) {
cb->setChecked(true);
}
connect(cb, &QCheckBox::toggled, [=](bool checked){
if(checked) {
// add this port to the vector at the correct position
used_ports.insert(upper_bound(used_ports.begin(), used_ports.end(), i), i);
} else {
// remove port from the vector
used_ports.erase(std::remove(used_ports.begin(), used_ports.end(), i), used_ports.end());
}
QTimer::singleShot(0, [=](){
createGUI();
setInitialChoices();
});
});
formlayout->addRow(label, cb);
}
2022-10-01 23:10:44 +08:00
for(unsigned int i=0;i<used_ports.size();i++) {
for(unsigned int j=0;j<used_ports.size();j++) {
auto label = new QLabel("S"+QString::number(used_ports[i])+QString::number(used_ports[j])+":");
auto box = new QComboBox();
connect(box, qOverload<int>(&QComboBox::currentIndexChanged), [=](int) {
traceSelectionChanged(box);
});
boxes.push_back(box);
formlayout->addRow(label, box);
}
}
scroll->setWidget(w);
w->show();
eventFilter(scroll, new QEvent(QEvent::Resize));
}
bool SparamTraceSelector::eventFilter(QObject *watched, QEvent *event)
{
// Make sure that the widget in the scroll area always expands to the scroll area size horizontally (only vertical scrolling)
if(event->type() == QEvent::Resize) {
auto scroll = (QScrollArea*) watched;
auto w = scroll->widget();
auto width = scroll->width();
if(scroll->verticalScrollBar()->isVisible()) {
width -= scroll->verticalScrollBar()->width();
2022-10-01 23:10:44 +08:00
}
w->setFixedWidth(width);
2022-10-01 23:10:44 +08:00
}
return false;
2022-10-01 23:10:44 +08:00
}