QGraphicsWidget和QGraphicsLayout的间距和大小

时间:2016-07-22 14:47:34

标签: c++ qt layout qgraphicswidget

我在QGraphicsWidget中使用QGraphics[Linear]LayoutQGraphicsScene来创建像“Widget”这样的节点。 每个节点都有一个标题,多个IOGraphicsWidgets和一个页脚。

代码结构:

Code structure

想要的布局:

Node layout

当前代码的结果:

Current result

如您所见,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

1 个答案:

答案 0 :(得分:0)

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