aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/studiowelcome/qml/splashscreen/MyEllipse.qml
blob: 529a7ce9b739b68b5041b2247663183af3a06f9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import StudioFonts 1.0
import projectmodel 1.0
import usagestatistics 1.0

EllipseItem {
    id: ellipse
    width: 529
    height: 391
    opacity: 0.495
    layer.enabled: true
    layer.effect: FastBlurEffect {
        id: fastBlur
        radius: 66
        transparentBorder: true
        cached: true
    }
    fillColor: "#878787"
    strokeColor: "#00ff0000"
}