summary refs log tree commit diff
path: root/src/ui/DropShadow.h
blob: 6997e1a0d9a95c48f1877feb8f1e14bd73979116 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <QColor>

class QPainter;

class DropShadow
{
public:
        static void draw(QPainter &painter,
                         qint16 margin,
                         qreal radius,
                         QColor start,
                         QColor end,
                         qreal startPosition,
                         qreal endPosition0,
                         qreal endPosition1,
                         qreal width,
                         qreal height);
};