2

我通过QGraphicsProxyWidget向图形场景(QGraphicScene)添加了一个小部件。问题是当我选择它被选中的项目时,但选择边框不可见。

这是代码:

    QDial *dial= new QDial(); // Widget 
    dial->setGeometry(3,3,100,100);// setting offset for graphicswidget and widget

    QGraphicsWidget *ParentWidget = new QGraphicsWidget();// created to move and select on scene
    ParentWidget->setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
    Scene->addItem(ParentWidget); // adding to scene

    QGraphicsProxyWidget *proxy = new QGraphicsProxyWidget();// adding normal widget through this one
    proxy->setWidget( DialBox );
    proxy->setParentItem(ParentWidget);

这是输出:

输出

我该如何解决这个问题?

4

2 回答 2

2

原因

QGraphicsWidget不绘制任何东西(包括选择矩形),从源代码中可以看出:

void QGraphicsWidget::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
    Q_UNUSED(painter);
    Q_UNUSED(option);
    Q_UNUSED(widget);
}

然而,QGraphicsRectItem确实(参见源代码):

void QGraphicsRectItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
                              QWidget *widget)
{
    ...

    if (option->state & QStyle::State_Selected)
        qt_graphicsItem_highlightSelected(this, painter, option);
}

解决方案

我的解决方案是使用QGraphicsRectItem而不是QGraphicsWidget作为句柄来选择/移动表盘,如下所示:

auto *dial= new QDial();                                        // The widget
auto *handle = new QGraphicsRectItem(QRect(0, 0, 120, 120));    // Created to move and select on scene
auto *proxy = new QGraphicsProxyWidget(handle);                 // Adding the widget through the proxy

dial->setGeometry(0, 0, 100, 100);
dial->move(10, 10);

proxy->setWidget(dial);

handle->setPen(QPen(Qt::transparent));
handle->setBrush(Qt::gray);
handle->setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);

Scene->addItem(handle); // adding to scene

此代码产生以下结果:

在此处输入图像描述

单击拨号小部件周围的深灰色区域以选择/移动它或小部件本身以与之交互。

于 2018-08-25T12:28:02.247 回答
0

我知道这个问题很老,但这里有一个 python 代码供任何寻找相同问题的人使用。每当单击小部件时,它将绘制一个边框。

   class rectangle(QtWidgets.QGraphicsProxyWidget):
        def __init__(self):
            super().__init__()
            self.container = Container()  # a class inheriting Qwidget class
            self.setWidget(self.container)
            self.setFlag(QGraphicsItem.ItemIsSelectable, True) 
    
        def paint(self, qp, opt, widget):
            qp.save()
            pen = QtGui.QPen()
            pen.setColor(Qt.transparent)
            pen.setWidth(3)
    
    
            if self.isSelected():
                pen.setColor(Qt.yellow)  # selection color of your choice
    
            qp.setBrush(Qt.transparent)
            qp.setPen(pen)
            qp.drawRect(0, 0, self.container.width(), self.container.height())  # draws rectangle around the widget
    
    
            super().paint(qp, opt, widget)
            qp.restore()
    
        def mousePressEvent(self, event):
    
            if event.button() == Qt.LeftButton:
                self.setSelected(True)
            
            super().mousePressEvent(event)
于 2020-12-05T06:15:27.843 回答