aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/ios/impl/CursorDelegate.qml
blob: 9b675afeb208ce1a4c6441d027ef8e6a4549c716 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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

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
    }
}