我有一个QGraphicsItemGroup聚合了几个子项,我想只显示该组的一部分。(不是子项的数量,区域)。就像这里的图像一样。
我想显示显示区域。
为此,我尝试了覆盖QGraphicsItemGroup :: boundingRect()。然而,一切都没有发生。我在QT文档中找到了这个,也许这就是为什么不起作用的原因。
QGraphicsItemGroup的boundingRect()函数返回项目组中所有项目的边界矩形。
另外,我知道我可以改变QGraphicsView的大小以使其工作。不过我把View视为CentralWidget,因为我还需要在View中显示其他对象,我无法改变View的大小。
如何设置QGraphicItemGroup的显示范围?
答案 0 :(得分:0)
要执行此任务,我们可以通过返回定义可见区域的shape()
来覆盖QPainterPath
,以便它传播到其子级,我们启用标记ItemClipsChildrenToShape
:
class GraphicsItemGroup: public QGraphicsItemGroup{
public:
GraphicsItemGroup(QGraphicsItem * parent = 0):QGraphicsItemGroup(parent){
setFlag(QGraphicsItem::ItemClipsChildrenToShape, true);
}
QPainterPath shape() const
{
if(mShape.isEmpty())
return QGraphicsItemGroup::shape();
return mShape;
}
void setShape(const QPainterPath &shape){
mShape = shape;
update();
}
private:
QPainterPath mShape;
};
示例:
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QWidget w;
w.setLayout(new QVBoxLayout);
QGraphicsView view;
QPushButton button("click me");
w.layout()->addWidget(&view);
w.layout()->addWidget(&button);
view.setScene(new QGraphicsScene);
GraphicsItemGroup group;
view.scene()->addItem(&group);
auto ellipse = new QGraphicsEllipseItem(QRectF(0, 0, 100, 100));
ellipse->setBrush(Qt::red);
auto rect = new QGraphicsRectItem(QRect(150, 150, 100, 100));
rect->setBrush(Qt::blue);
group.addToGroup(ellipse);
group.addToGroup(rect);
QObject::connect(&button, &QPushButton::clicked, [&group](){
QPainterPath shape;
if(group.shape().boundingRect() == group.boundingRect()){
shape.addRect(0, 50, 250, 150);
}
group.setShape(shape);
});
w.show();
return a.exec();
}
输出:
完整示例可在以下link中找到。