blob: 373e8ee4304c0da93e07c2525ed5c30ac38cc3c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright (C) 2022 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.iOS.impl
Rectangle {
id: cursor
color: "#426bf2"
width: 2
radius: 1
visible: parent.activeFocus && !parent.readOnly && parent.selectionStart === parent.selectionEnd
opacity: timer.visible ? 1 : 0
CursorFlashTimer {
id: timer
cursorPosition: cursor.parent.cursorPosition
running: cursor.parent.activeFocus && !cursor.parent.readOnly
}
}
|