aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/ios/impl/CursorDelegate.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/quickcontrols/ios/impl/CursorDelegate.qml')
-rw-r--r--src/quickcontrols/ios/impl/CursorDelegate.qml22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/quickcontrols/ios/impl/CursorDelegate.qml b/src/quickcontrols/ios/impl/CursorDelegate.qml
new file mode 100644
index 0000000000..9b675afeb2
--- /dev/null
+++ b/src/quickcontrols/ios/impl/CursorDelegate.qml
@@ -0,0 +1,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
+ }
+}