blob: f54e6dbadd388b6bbdaa766b0bc18b1033796673 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (C) 2026 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick 2.0
import Qt5Compat.GraphicalEffects
FastBlur {
id: innerShadow
property color color: "#000000"
property bool fast: false
property real horizontalOffset: 0
property real radius: 0
property real samples: 0
property real spread: 0
property real verticalOffset: 0
Component.onCompleted: console.log("InnerShadow is not supported with Qt 6")
}
|