aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/designeffects/DesignDropShadow.qml
blob: 0e41d161f02f20beab1c267d242ec19da05a1fc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2026 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick
import QtQuick.Controls

QtObject {
    property real blur: 4
    property int offsetX: 0
    property int offsetY: 4
    property int spread: 0
    property color color: "#3f000000" // black 25%
    property bool showBehind: true
    property bool visible: true

    property string type: "DropShadow"
}