2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#ifndef BLUREFFECT_H
|
|
|
|
#define BLUREFFECT_H
|
|
|
|
|
|
|
|
#include <QGraphicsEffect>
|
|
|
|
#include <QGraphicsItem>
|
|
|
|
|
|
|
|
class BlurEffect: public QGraphicsBlurEffect
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BlurEffect(QGraphicsItem *item);
|
|
|
|
|
|
|
|
void setBaseLine(qreal y) { m_baseLine = y; }
|
|
|
|
|
|
|
|
QRectF boundingRect() const;
|
|
|
|
|
2016-06-15 08:12:35 +00:00
|
|
|
void draw(QPainter *painter) override;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void adjustForItem();
|
|
|
|
|
|
|
|
private:
|
|
|
|
qreal m_baseLine;
|
|
|
|
QGraphicsItem *item;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BLUREFFECT_H
|