我在 a中使用QGraphicsWidget
and来创建一个像“Widget”这样的节点。每个节点都有一个 Header、multiple和一个 Footer。QGraphics[Linear]Layout
QGraphicsScene
IOGraphicsWidgets
代码结构:
想要的布局:
当前代码的结果:
如您所见NodeGraphicsWidget
(HeaderWidget 后面的红色矩形)未调整大小以包含添加到其中的所有项目。之间的间距LayoutItems
也很大,m_centerWidgetLayout->setSpacing(0)
没有任何变化。现在我正在考虑自己编写所有布局,但我希望有更好的方法可以使用标准 qt。
NodeGraphicsWidget:addIOWidget(AbstractIOGraphicsWidget *ioWidget)
只需将给定添加AbstractIOGraphicsWidget
到m_centerWidgetLayout
.
的构造函数NodeGraphicsWidget
:
NodeGraphicsWidget::NodeGraphicsWidget(NodeGraphicsWidget::WidgetCreationFunction headerCreationFunc, NodeGraphicsWidget::WidgetCreationFunction footerCreationFunc, QGraphicsItem *parent, Qt::WindowFlags wFlags):
QGraphicsWidget(parent, wFlags)
{
m_headerWidget = new QGraphicsWidget(this);
m_centerWidget = new QGraphicsWidget(this);
m_centerWidgetLayout = new QGraphicsLinearLayout(Qt::Orientation::Vertical, m_centerWidget);
m_centerWidgetLayout->setSpacing(0);
m_centerWidget->setLayout(m_centerWidgetLayout);
m_footerWidget = new QGraphicsWidget(this);
headerCreationFunc(this, m_headerWidget);
if(footerCreationFunc != nullptr){
footerCreationFunc(this, m_footerWidget);
}
setAutoFillBackground(true);
QPalette pal;
pal.setColor(QPalette::Window, QColor(Qt::red));
this->setPalette(pal);
}
要查看完整的源代码,请访问:https ://github.com/nidomiro/QtNodes/tree/f5426c154a4938481f00031f031507499cc0e183/src