0

我在 a中使用QGraphicsWidgetand来创建一个像“Widget”这样的节点。每个节点都有一个 Header、multiple和一个 Footer。QGraphics[Linear]LayoutQGraphicsSceneIOGraphicsWidgets

代码结构:

代码结构

想要的布局:

节点布局

当前代码的结果:

当前结果

如您所见NodeGraphicsWidget(HeaderWidget 后面的红色矩形)未调整大小以包含添加到其中的所有项目。之间的间距LayoutItems也很大,m_centerWidgetLayout->setSpacing(0)没有任何变化。现在我正在考虑自己编写所有布局,但我希望有更好的方法可以使用标准 qt。

NodeGraphicsWidget:addIOWidget(AbstractIOGraphicsWidget *ioWidget)只需将给定添加AbstractIOGraphicsWidgetm_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

4

1 回答 1

0

我自己找到了解决问题的方法。首先,我忘记了根布局,NodeGraphicsWidget但这并没有解决整个问题。主要问题,即项目之间的间距,并不是真正的问题。真正的问题是每个QGraphicsLinearLayout默认情况下都有一个边距,而AbstractIOGraphicsWidget根布局有这些边距。layout->setContentsMargins(0,0,0,0)解决了这个问题。

于 2016-07-27T20:37:29.007 回答