Warning, /graphics/washipad/src/PageMarker.qml is written in an unsupported language. File is not indexed.

0001 // This file is part of Washi Pad
0002 // SPDX-FileCopyrightText: 2018 Kevin Ottens <ervin@kde.org>
0003 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0004 
0005 import QtQuick 2.0
0006 import QtQuick.Window 2.0
0007 
0008 Rectangle {
0009     property real markerRadius: 5
0010 
0011     color: "transparent"
0012     border.color: Qt.rgba(0.75, 0.75, 0, 0.5)
0013     border.width: 2
0014     width: height
0015     height: markerRadius * Screen.pixelDensity
0016     radius: height / 2
0017 }