1

在 GraphicsView(QGraphicsView)我设置场景(QGraphicsScene),我通过 qgraphicsproxy 小部件添加 qdial 对象,将 sizegrip 放在右下位置?`

QDial *dial = new QDial(); //  dial object
plot->setGeometry(event->pos().x(),event->pos().y(),80,80);

QSizeGrip * sizeGrip = new QSizeGrip(dial );// placing sizegrip

QGraphicsProxyWidget *proxy = new QGraphicsProxyWidget();
proxy->setWidget(dial );
proxy->setFlag(QGraphicsItem::ItemIsMovable,true);
scene->addItem(proxy);` 

输出图像

4

1 回答 1

2

您必须使用如下所示的布局:

#include <QApplication>
#include <QDial>
#include <QGraphicsProxyWidget>
#include <QGraphicsView>
#include <QHBoxLayout>
#include <QSizeGrip>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QGraphicsView view;

    QGraphicsScene *scene = new QGraphicsScene(&view);
    view.setScene(scene);

    QDial *dial = new QDial;
    QSizeGrip * sizeGrip = new QSizeGrip(dial);

    QHBoxLayout *layout = new QHBoxLayout(dial);
    layout->setContentsMargins(0, 0, 0, 0);
    layout->addWidget(sizeGrip, 0, Qt::AlignRight | Qt::AlignBottom);

    QGraphicsProxyWidget *proxy = new QGraphicsProxyWidget();
    proxy->setWidget(dial);
    proxy->setFlag(QGraphicsItem::ItemIsMovable,true);
    scene->addItem(proxy);

    view.show();
    return a.exec();
}

在此处输入图像描述

于 2018-06-20T06:51:06.257 回答