Files
qad/libs/piqt_widgets/pivaluetree_edit_parameters.cpp

181 lines
5.9 KiB
C++

#include "pivaluetree_edit_parameters.h"
#include "piqt.h"
#include "pivariant_edit.h"
#include <QFormLayout>
#include <QGroupBox>
using Attribute = PIValueTree::Attribute;
const char property_name[] = "__name__";
PIValueTreeEditParameters::PIValueTreeEditParameters(QWidget * parent): QDialog(parent) {
setupUi(this);
}
PIValueTreeEditParameters::~PIValueTreeEditParameters() {}
bool PIValueTreeEditParameters::showFor(PIValueTree & vt) {
setWindowTitle(tr("Change of \"%1\"").arg(PI2QString(vt.name())));
ve_attr.clear();
ve_array.clear();
while (layoutAttributes->rowCount() > 0)
layoutAttributes->removeRow(0);
while (layoutArray->rowCount() > 0)
layoutArray->removeRow(0);
if (last_IDs_count != PIVariant::knownTypeIDsCount()) {
last_IDs_count = PIVariant::knownTypeIDsCount();
comboType->clear();
auto ids = PIVariant::knownTypeIDs();
PIVector<PIPair<uint, QString>> types;
for (auto id: ids) {
if (!PIVariantEditorBase::editorExists(id)) continue;
PIString tn = PIVariant::typeNameFromID(id);
if (tn.startsWith("PI")) tn.remove(0, 2);
if (tn.startsWith("VariantTypes::")) tn.remove(0, 14);
types.append({id, PI2QString(tn)});
}
types.sort([](const PIPair<uint, QString> & a, const PIPair<uint, QString> & b) {
return QString::localeAwareCompare(a.second, b.second) < 0;
});
for (const auto & t: types)
comboType->addItem(t.second, t.first);
}
comboType->blockSignals(true);
comboType->setEnabled(true);
if (vt.isArray()) {
uint array_type = PIVariant::typeIDFromName(vt.attribute(Attribute::arrayType).toString());
comboType->setCurrentIndex(comboType->findData(array_type));
checkAttribute(vt, Attribute::arrayMinCount, 0);
checkAttribute(vt, Attribute::arrayMaxCount, 65536);
checkAttribute(vt, Attribute::arrayReorder, true);
checkAttribute(vt, Attribute::arrayResize, true);
createAttributes(ve_array, layoutArray, vt.attributes(), true);
groupArray->show();
} else {
if (vt.attribute(Attribute::isLabel, false).toBool()) {
comboType->setEnabled(false);
checkAttribute(vt, Attribute::style, "");
}
comboType->setCurrentIndex(comboType->findData(vt.value().typeID()));
groupArray->hide();
}
comboType->blockSignals(false);
checkHidden->setChecked(vt.attribute(Attribute::hidden, false).toBool());
checkReadOnly->setChecked(vt.attribute(Attribute::readOnly, false).toBool());
checkLabel->blockSignals(true);
checkLabel->setChecked(vt.attribute(Attribute::isLabel, false).toBool());
checkLabel->blockSignals(false);
lineComment->setText(PI2QString(vt.comment()));
createAttributes(ve_attr, layoutAttributes, vt.attributes());
if (exec() != QDialog::Accepted) return false;
if (!vt.isArray()) {
PIString vs = vt.value().toString();
PIVariant var = PIVariant::fromType(comboType->currentData().toUInt());
var.setValueFromString(vs);
vt.setValue(var);
}
applyAttributes(vt);
vt.setComment(Q2PIString(lineComment->text()));
return true;
}
void PIValueTreeEditParameters::createAttributes(QList<PIVariantEdit *> & list,
QFormLayout * lay,
const PIVariantMap & attr,
bool inv_filter) {
static PIStringList hidden({"type", Attribute::hidden, Attribute::readOnly, Attribute::isLabel, Attribute::arrayType});
static PIStringList filter({Attribute::arrayMinCount, Attribute::arrayMaxCount, Attribute::arrayReorder, Attribute::arrayResize});
list.clear();
while (lay->rowCount() > 0)
lay->removeRow(0);
PIVariantMap dal;
if (!inv_filter) dal = PIVariantEditorBase::editorDefaultAttributes(comboType->currentData().toUInt());
auto vit = attr.makeIterator();
while (vit.next()) {
if (hidden.contains(vit.key())) continue;
bool cf = filter.contains(vit.key());
if (cf && !inv_filter) continue;
if (!cf && inv_filter) continue;
dal[vit.key()] = vit.value();
}
auto dit = dal.makeIterator();
while (dit.next()) {
auto * ve = new PIVariantEdit();
ve->setAttributes(PIVariantEditorBase::editorDefaultAttributes(dit.value().typeID()));
ve->setValue(dit.value());
ve->setProperty(property_name, PI2QString(dit.key()));
list << ve;
lay->addRow(PI2QString(dit.key() + ":"), ve);
}
}
void PIValueTreeEditParameters::applyAttributes(PIValueTree & vt) {
bool is_array = vt.isArray();
vt.attributes().clear();
for (auto * w: ve_attr) {
PIString an = Q2PIString(w->property(property_name).toString());
vt.setAttribute(an, w->value());
}
if (is_array) {
vt.setAttribute(Attribute::arrayType, PIVariant::typeNameFromID(comboType->currentData().toUInt()));
for (auto * w: ve_array) {
PIString an = Q2PIString(w->property(property_name).toString());
vt.setAttribute(an, w->value());
}
}
vt.setAttribute(Attribute::hidden, checkHidden->isChecked());
vt.setAttribute(Attribute::readOnly, checkReadOnly->isChecked());
vt.setAttribute(Attribute::isLabel, checkLabel->isChecked());
}
void PIValueTreeEditParameters::checkAttribute(PIValueTree & vt, PIString an, PIVariant def) {
if (vt.attributes().contains(an)) def.setValueFromString(vt.attributes().value(an).toString());
vt.setAttribute(an, def);
}
void PIValueTreeEditParameters::on_comboType_currentIndexChanged(int) {
createAttributes(ve_attr, layoutAttributes);
}
void PIValueTreeEditParameters::on_checkLabel_toggled(bool on) {
if (!on) {
comboType->setEnabled(true);
for (int r = 0; r < layoutAttributes->rowCount(); ++r) {
auto * w = qobject_cast<PIVariantEdit *>(layoutAttributes->itemAt(r, QFormLayout::FieldRole)->widget());
if (!w) continue;
PIString an = Q2PIString(w->property(property_name).toString());
if (an == Attribute::style) {
ve_attr.removeOne(w);
layoutAttributes->removeRow(r);
break;
}
}
} else {
comboType->setEnabled(false);
comboType->setCurrentIndex(comboType->findData(PIVariant::typeID<PIString>()));
ve_attr.clear();
while (layoutAttributes->rowCount() > 0)
layoutAttributes->removeRow(0);
createAttributes(ve_attr,
layoutAttributes,
{
{Attribute::style, ""}
});
}
}