diff --git a/gui/designwidget.cc b/gui/designwidget.cc index 896ef071..1b0e617e 100644 --- a/gui/designwidget.cc +++ b/gui/designwidget.cc @@ -411,6 +411,11 @@ void DesignWidget::onSelectionChanged(const QItemSelection &, const QItemSelecti addProperty(topItem, QVariant::String, "Conflicting Cell", ctx->nameOf(ctx->getConflictingBelCell(bel)), ElementType::CELL); + QtProperty *attrsItem = addSubGroup(topItem, "Attributes"); + for (auto &item : ctx->getBelAttrs(bel)) { + addProperty(attrsItem, QVariant::String, item.first.c_str(ctx), item.second.c_str()); + } + QtProperty *belpinsItem = addSubGroup(topItem, "Ports"); for (const auto &item : ctx->getBelPins(bel)) { QtProperty *portInfoItem = addSubGroup(belpinsItem, item.c_str(ctx)); @@ -433,6 +438,11 @@ void DesignWidget::onSelectionChanged(const QItemSelection &, const QItemSelecti addProperty(topItem, QVariant::String, "Conflicting Net", ctx->nameOf(ctx->getConflictingWireNet(wire)), ElementType::NET); + QtProperty *attrsItem = addSubGroup(topItem, "Attributes"); + for (auto &item : ctx->getWireAttrs(wire)) { + addProperty(attrsItem, QVariant::String, item.first.c_str(ctx), item.second.c_str()); + } + DelayInfo delay = ctx->getWireDelay(wire); QtProperty *delayItem = addSubGroup(topItem, "Delay"); @@ -492,6 +502,11 @@ void DesignWidget::onSelectionChanged(const QItemSelection &, const QItemSelecti addProperty(topItem, QVariant::String, "Dest Wire", ctx->getWireName(ctx->getPipDstWire(pip)).c_str(ctx), ElementType::WIRE); + QtProperty *attrsItem = addSubGroup(topItem, "Attributes"); + for (auto &item : ctx->getPipAttrs(pip)) { + addProperty(attrsItem, QVariant::String, item.first.c_str(ctx), item.second.c_str()); + } + DelayInfo delay = ctx->getPipDelay(pip); QtProperty *delayItem = addSubGroup(topItem, "Delay");