KQuickImageEditor

CropBackground.qml
1/* SPDX-FileCopyrightText: 2021 Noah Davis <noahadvs@gmail.com>
2 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
3 */
4
5import QtQuick 2.15
6import org.kde.kirigami 2.15 as Kirigami
7
8RectangleCutout {
9 id: root
10 Rectangle {
11 x: root.insideX - 1
12 y: root.insideY - 1
13 width: root.insideWidth + 2
14 height: root.insideHeight + 2
15 color: "transparent"
16 border.color: Kirigami.Theme.highlightColor
17 border.width: 1
18 }
19}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:40 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.