59 lines
2.0 KiB
QML
59 lines
2.0 KiB
QML
// Copyright (C) 2024 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
// Qt-Security score:significant reason:default
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
@Deprecated {
|
|
reason: "FocusFrame component has been moved to private FluentWinUI3.impl module \
|
|
and is no longer part of the public QML API."
|
|
}
|
|
Rectangle {
|
|
Component.onCompleted: {
|
|
print("FocusFrame has been moved to private FluentWinUI3.impl module "
|
|
+ "and is no longer part of the public QML API.")
|
|
}
|
|
function moveToItem(item) {
|
|
if (!item) {
|
|
targetItem = null;
|
|
parent = null;
|
|
return;
|
|
}
|
|
parent = item.parent
|
|
targetItem = item
|
|
}
|
|
|
|
property Item targetItem
|
|
property real innerFrameSize: 1
|
|
property real outerFrameSize: 3
|
|
property real frameRadius: 4.0
|
|
|
|
x: targetItem ? targetItem.x - outerFrameSize : 0
|
|
y: targetItem ? targetItem.y - outerFrameSize : 0
|
|
// Stack on top of all siblings of the targetItem
|
|
z: 100
|
|
width: targetItem ? targetItem.width + outerFrameSize * 2 : 0
|
|
height: targetItem ? targetItem.height + outerFrameSize * 2 : 0
|
|
radius: frameRadius + outerFrameSize
|
|
visible: targetItem && targetItem.visible
|
|
color: "transparent"
|
|
border.color: Application.styleHints.colorScheme === Qt.Light ? "black" : "white"
|
|
border.width: outerFrameSize - (Application.styleHints.colorScheme === Qt.Light ? innerFrameSize : 0)
|
|
|
|
Rectangle {
|
|
id: innerFocusFrame
|
|
z: 10
|
|
x: outerFrameSize - innerFrameSize
|
|
y: outerFrameSize - innerFrameSize
|
|
width: targetItem ? targetItem.width + innerFrameSize * 2 : 0
|
|
height: targetItem ? targetItem.height + innerFrameSize * 2 : 0
|
|
radius: frameRadius + innerFrameSize
|
|
visible: targetItem && targetItem.visible
|
|
color: "transparent"
|
|
border.color: Application.styleHints.colorScheme === Qt.Light ? "white" : "black"
|
|
border.width: innerFrameSize
|
|
}
|
|
}
|