MauiKit Image Tools

BasicResizeHandle.qml
1/*
2 * SPDX-FileCopyrightText: (C) 2020 Carl Schwan <carl@carlschwan.eu>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-or-later
5 */
6
7import QtQuick
8
9import org.mauikit.controls as Maui
10import org.mauikit.imagetools.editor as ITE
11
12ITE.ResizeHandle
13{
14 width: Kirigami.Settings.isMobile ? 20 : 10
15 height: width
16
17 Maui.ShadowedRectangle
18 {
19 Maui.Theme.colorSet: Maui.Theme.View
20 color: Maui.Theme.backgroundColor
21 shadow {
22 size: 4
23 color: Maui.Theme.textColor
24 }
25 anchors.fill: parent
26 radius: width
27 opacity: 0.8
28 }
29 scale: 1
30}
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 25 2025 11:51:53 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.