Свой QGraphicsEffect box-shadow (своя тень)

145
30 декабря 2021, 12:40

Как можно сделать свою тень box-shadow как в CSS, чтобы были такие же параметры как там: сдвиг по x, сдвиг по y, размытие, растяжение и цвет.

QGraphicsDropShadowEffect не подходит из-за своей "деревянности"(его нельзя так гибко настроить как я хочу).

Header

#ifndef CUSTOMSHADOWEFFECT_H
#define CUSTOMSHADOWEFFECT_H
#include <QGraphicsDropShadowEffect>
#include <QGraphicsEffect>
class CustomShadowEffect : public QGraphicsEffect
{
    Q_OBJECT
public:
    explicit CustomShadowEffect(QObject *parent = 0);
    void draw(QPainter* painter);
    QRectF boundingRectFor(const QRectF& rect) const;
    inline void setDistance(qreal distance) { _distance = distance; updateBoundingRect(); }
    inline qreal distance() const { return _distance; }
    inline void setBlurRadius(qreal blurRadius) { _blurRadius = blurRadius; updateBoundingRect(); }
    inline qreal blurRadius() const { return _blurRadius; }
    inline void setColor(const QColor& color) { _color = color; }
    inline QColor color() const { return _color; }
private:
    qreal  _distance;
    qreal  _blurRadius;
    QColor _color;
};
#endif // CUSTOMSHADOWEFFECT_H

Source

#include "customshadoweffect.h"
#include <QPainter>
// #include <QGraphicsEffect>
CustomShadowEffect::CustomShadowEffect(QObject *parent) :
    QGraphicsEffect(parent),
    _distance(4.0f),
    _blurRadius(10.0f),
    _color(0, 0, 0, 80)
{
}
QT_BEGIN_NAMESPACE
  extern Q_WIDGETS_EXPORT void qt_blurImage(QPainter *p, QImage &blurImage, qreal radius, bool quality, bool alphaOnly, int transposed = 0 );
QT_END_NAMESPACE
void CustomShadowEffect::draw(QPainter* painter)
{
    // if nothing to show outside the item, just draw source
    if ((blurRadius() + distance()) <= 0) {
        drawSource(painter);
        return;
    }
    PixmapPadMode mode = QGraphicsEffect::PadToEffectiveBoundingRect;
    QPoint offset;
    const QPixmap px = sourcePixmap(Qt::DeviceCoordinates, &offset, mode);
    // return if no source
    if (px.isNull())
        return;
    // save world transform
    QTransform restoreTransform = painter->worldTransform();
    painter->setWorldTransform(QTransform());
    // Calculate size for the background image
    QSize szi(px.size().width() + 2 * distance(), px.size().height() + 2 * distance());
    QImage tmp(szi, QImage::Format_ARGB32_Premultiplied);
    QPixmap scaled = px.scaled(szi);
    tmp.fill(0);
    QPainter tmpPainter(&tmp);
    tmpPainter.setCompositionMode(QPainter::CompositionMode_Source);
    tmpPainter.drawPixmap(QPointF(-distance(), -distance()), scaled);
    tmpPainter.end();
    // blur the alpha channel
    QImage blurred(tmp.size(), QImage::Format_ARGB32_Premultiplied);
    blurred.fill(0);
    QPainter blurPainter(&blurred);
    qt_blurImage(&blurPainter, tmp, blurRadius(), false, true);
    blurPainter.end();
    tmp = blurred;
    // blacken the image...
    tmpPainter.begin(&tmp);
    tmpPainter.setCompositionMode(QPainter::CompositionMode_SourceIn);
    tmpPainter.fillRect(tmp.rect(), color());
    tmpPainter.end();
    // draw the blurred shadow...
    painter->drawImage(offset, tmp);
    // draw the actual pixmap...
    painter->drawPixmap(offset, px, QRectF());
    // restore world transform
    painter->setWorldTransform(restoreTransform);
}
QRectF CustomShadowEffect::boundingRectFor(const QRectF& rect) const
{
    qreal delta = blurRadius() + distance();
    return rect.united(rect.adjusted(-delta, -delta, delta, delta));
}

Спасибо за ответы!

READ ALSO
Выполнять суммирование пока условие не выполнится

Выполнять суммирование пока условие не выполнится

В сем привет! Помогите решить задача на с++C клавиатуры вводится числа и записываются в переменные max и Del0

168
как можно упростить данный код

как можно упростить данный код

Всем привет, написал код и хочу узнать можно ли как то его ещё сильнее у компановать?

141
Почему не работает программа? С++

Почему не работает программа? С++

Требуется написать программу, которая находит натуральные числа, кратные 3 и 5 в диапазоне меньше 1000,затем выводит сумму этих чиселПочему...

244
Выделить определенную часть строки в текстовом файле и найти 8-ми битную XOR сумму всех символов

Выделить определенную часть строки в текстовом файле и найти 8-ми битную XOR сумму всех символов

Недавно начала изучать с++, есть задание по обработке текстового файла такого вида:

77