matrixion/src/ui/DropShadow.h

21 lines
493 B
C
Raw Normal View History

#pragma once
#include <QColor>
2020-01-31 08:12:02 +03:00
class QPainter;
class DropShadow
{
public:
2017-09-10 12:59:21 +03:00
static void draw(QPainter &painter,
qint16 margin,
qreal radius,
QColor start,
QColor end,
qreal startPosition,
qreal endPosition0,
qreal endPosition1,
qreal width,
2020-01-31 08:12:02 +03:00
qreal height);
};