7

在 aQGraphicsScene中,我有一个背景设置,QGraphicsItem上面有几个 s。这些图形项具有任意形状。我想制作另一个QGraphicsItem,即一个圆圈,当放置在这些项目上时,它将基本上显示这个圆圈内的背景,而不是用颜色填充。

这有点像在 Photoshop 中具有多层背景。然后,使用圆形选框工具删除背景顶部的所有图层以显示圆圈内的背景。

或者,查看它的另一种方式可能是设置不透明度,但此不透明度会影响其正下方的项目(但仅在椭圆内)以显示背景。

4

1 回答 1

7

以下可能有效。它基本上扩展了一个法线QGraphicsScene,能够仅将其背景渲染到任何QPainter. 然后,您的“剪切”图形项目只是将场景背景呈现在其他项目之上。为此,切出的项目必须具有最高的 Z 值。

截屏

#include <QtGui>

class BackgroundDrawingScene : public QGraphicsScene {
public:
  explicit BackgroundDrawingScene() : QGraphicsScene() {}
  void renderBackground(QPainter *painter,
                        const QRectF &source,
                        const QRectF &target) {
    painter->save();
    painter->setWorldTransform(
          QTransform::fromTranslate(target.left() - source.left(),
                                    target.top() - source.top()),
          true);
    QGraphicsScene::drawBackground(painter, source);
    painter->restore();
  }
};

class CutOutGraphicsItem : public QGraphicsEllipseItem {
public:
  explicit CutOutGraphicsItem(const QRectF &rect)
    : QGraphicsEllipseItem(rect) {
    setFlag(QGraphicsItem::ItemIsMovable);
  }
protected:
  void paint(QPainter *painter, const QStyleOptionGraphicsItem *, QWidget *) {
    BackgroundDrawingScene *bgscene =
        dynamic_cast<BackgroundDrawingScene*>(scene());
    if (!bgscene) {
      return;
    }

    painter->setClipPath(shape());
    bgscene->renderBackground(painter,
                              mapToScene(boundingRect()).boundingRect(),
                              boundingRect());
  }
};


int main(int argc, char **argv) {
  QApplication app(argc, argv);

  BackgroundDrawingScene scene;
  QRadialGradient gradient(0, 0, 10);
  gradient.setSpread(QGradient::RepeatSpread);
  scene.setBackgroundBrush(gradient);

  scene.addRect(10., 10., 100., 50., QPen(Qt::SolidLine), QBrush(Qt::red));
  scene.addItem(new CutOutGraphicsItem(QRectF(20., 20., 20., 20.)));

  QGraphicsView view(&scene);
  view.show();

  return app.exec();
}
于 2012-06-15T20:30:01.500 回答