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

0001 /*
0002     SPDX-FileCopyrightText: 2018 Jean-Baptiste Mardelle <jb@kdenlive.org>
0003     SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0004 */
0005 
0006 import QtQuick.Controls 2.15
0007 import QtQuick 2.15
0008 
0009 Item {
0010     id: overlay
0011     // Vertical segments
0012     Rectangle {
0013         color: root.overlayColor
0014         height: parent.height
0015         width: 1
0016         x: parent.width / 3
0017     }
0018     Rectangle {
0019         color: root.overlayColor
0020         height: parent.height
0021         width: 1
0022         x: (parent.width / 3 ) * 2
0023     }
0024     // Horizontal segments
0025     Rectangle {
0026         color: root.overlayColor
0027         width: parent.width
0028         height: 1
0029         y: parent.height / 3
0030     }
0031     Rectangle {
0032         color: root.overlayColor
0033         width: parent.width
0034         height: 1
0035         y: (parent.height / 3) * 2
0036     }
0037 }