如何将 QSizeGrip 放在 QDial 的右下角?
How to place QSizeGrip in the bottom right of a QDial?
在 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);`
输出图像
您必须使用如下所示的布局:
#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();
}
在 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);`
输出图像
您必须使用如下所示的布局:
#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();
}