Warning, /multimedia/kdenlive/src/timeline2/view/qml/MixShape.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2020 Jean-Baptiste Mardelle <jb@kdenlive.org>
0003     SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0004 */
0005 
0006 import QtQuick 2.15
0007 import QtQuick.Shapes 1.15
0008 
0009 Shape {
0010     anchors.fill: parent
0011     asynchronous: true
0012     opacity: 0.4
0013     ShapePath {
0014         fillColor: "#000"
0015         strokeColor: "transparent"
0016         PathLine {x: 0; y: 0}
0017         PathLine {x: mixBackground.width; y: mixBackground.height}
0018         PathLine {x: 0; y: mixBackground.height}
0019         PathLine {x: 0; y: 0}
0020     }
0021     ShapePath {
0022         fillColor: "#000"
0023         strokeColor: "transparent"
0024         PathLine {x: mixBackground.width; y: 0}
0025         PathLine {x: mixBackground.width; y: mixBackground.height}
0026         PathLine {x: 0; y: mixBackground.height}
0027         PathLine {x: mixBackground.width; y: 0}
0028     }
0029 }