summaryrefslogtreecommitdiff
path: root/src/controls/Private/TextInputWithHandles.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@digia.com>2014-07-18 14:31:17 +0200
committerJ-P Nurmi <jpnurmi@digia.com>2014-07-18 16:43:16 +0200
commit1f8cccd791b0fe401692d5a6eaa865606e479cc5 (patch)
tree744cedd7052a5bbb849f26b4d44968cb8f16b367 /src/controls/Private/TextInputWithHandles.qml
parent62babdaa5810c575215565dcc9086e869d272517 (diff)
downloadqtquickcontrols-1f8cccd791b0fe401692d5a6eaa865606e479cc5.tar.gz
TextField: refactor selection handles
Move the selection handles to a private type that can be re-used in SpinBox and editable ComboBox. Task-number: QTBUG-38934 Change-Id: Ib1eec3259d19ffea7aa8c2b76fed4e914f2ce3ec Reviewed-by: Liang Qi <liang.qi@digia.com>
Diffstat (limited to 'src/controls/Private/TextInputWithHandles.qml')
-rw-r--r--src/controls/Private/TextInputWithHandles.qml168
1 files changed, 168 insertions, 0 deletions
diff --git a/src/controls/Private/TextInputWithHandles.qml b/src/controls/Private/TextInputWithHandles.qml
new file mode 100644
index 00000000..5eb1bd17
--- /dev/null
+++ b/src/controls/Private/TextInputWithHandles.qml
@@ -0,0 +1,168 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt Quick Controls module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:BSD$
+** You may use this file under the terms of the BSD license as follows:
+**
+** "Redistribution and use in source and binary forms, with or without
+** modification, are permitted provided that the following conditions are
+** met:
+** * Redistributions of source code must retain the above copyright
+** notice, this list of conditions and the following disclaimer.
+** * Redistributions in binary form must reproduce the above copyright
+** notice, this list of conditions and the following disclaimer in
+** the documentation and/or other materials provided with the
+** distribution.
+** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
+** of its contributors may be used to endorse or promote products derived
+** from this software without specific prior written permission.
+**
+**
+** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+import QtQuick 2.2
+
+TextInput {
+ id: input
+
+ property Item control
+ property alias cursorHandle: cursorHandle.delegate
+ property alias selectionHandle: selectionHandle.delegate
+
+ property bool blockRecursion: false
+ property bool hasSelection: selectionStart !== selectionEnd
+ readonly property int selectionPosition: selectionStart !== cursorPosition ? selectionStart : selectionEnd
+ readonly property alias containsMouse: mouseArea.containsMouse
+
+ selectByMouse: control.selectByMouse && (!cursorHandle.delegate || !selectionHandle.delegate)
+
+ // force re-evaluation when selection moves:
+ // - cursorRectangle changes => content scrolled
+ // - contentWidth changes => text layout changed
+ property rect selectionRectangle: cursorRectangle.x && contentWidth ? positionToRectangle(selectionPosition)
+ : positionToRectangle(selectionPosition)
+
+ onSelectionStartChanged: {
+ if (!blockRecursion && selectionHandle.delegate) {
+ blockRecursion = true
+ selectionHandle.position = selectionPosition
+ blockRecursion = false
+ }
+ }
+
+ onCursorPositionChanged: {
+ if (!blockRecursion && cursorHandle.delegate) {
+ blockRecursion = true
+ cursorHandle.position = cursorPosition
+ blockRecursion = false
+ }
+ }
+
+ function activate() {
+ if (activeFocusOnPress) {
+ forceActiveFocus()
+ if (!readOnly)
+ Qt.inputMethod.show()
+ }
+ cursorHandle.activate()
+ selectionHandle.activate()
+ }
+
+ function moveHandles(cursor, selection) {
+ blockRecursion = true
+ Qt.inputMethod.commit()
+ cursorPosition = cursor
+ if (selection === -1) {
+ selectWord()
+ selection = selectionStart
+ }
+ selectionHandle.position = selection
+ cursorHandle.position = cursorPosition
+ blockRecursion = false
+ }
+
+ MouseArea {
+ id: mouseArea
+ anchors.fill: parent
+ hoverEnabled: true
+ cursorShape: Qt.IBeamCursor
+ acceptedButtons: input.selectByMouse ? Qt.NoButton : Qt.LeftButton
+ onClicked: {
+ var pos = input.positionAt(mouse.x, mouse.y)
+ input.moveHandles(pos, pos)
+ input.activate()
+ }
+ onPressAndHold: {
+ var pos = input.positionAt(mouse.x, mouse.y)
+ input.moveHandles(pos, control.selectByMouse ? -1 : pos)
+ input.activate()
+ }
+ }
+
+ TextHandle {
+ id: selectionHandle
+
+ editor: input
+ parent: control
+ control: input.control
+ active: control.selectByMouse
+ maximum: cursorHandle.position - 1
+ readonly property real selectionX: input.selectionRectangle.x
+ x: input.x + (pressed ? Math.max(0, selectionX) : selectionX)
+ y: input.selectionRectangle.y + input.y
+ visible: pressed || (input.hasSelection && handleX + handleWidth >= -1 && handleX <= control.width + 1)
+
+ onPositionChanged: {
+ if (!input.blockRecursion) {
+ input.blockRecursion = true
+ input.select(selectionHandle.position, cursorHandle.position)
+ if (pressed)
+ input.ensureVisible(position)
+ input.blockRecursion = false
+ }
+ }
+ }
+
+ TextHandle {
+ id: cursorHandle
+
+ editor: input
+ parent: control
+ control: input.control
+ active: control.selectByMouse
+ delegate: style.cursorHandle
+ minimum: input.hasSelection ? selectionHandle.position + 1 : -1
+ x: input.cursorRectangle.x + input.x
+ y: input.cursorRectangle.y + input.y
+ visible: pressed || ((input.cursorVisible || input.hasSelection)
+ && handleX + handleWidth >= -1 && handleX <= control.width + 1)
+
+ onPositionChanged: {
+ if (!input.blockRecursion) {
+ input.blockRecursion = true
+ if (!input.hasSelection)
+ selectionHandle.position = cursorHandle.position
+ Qt.inputMethod.commit()
+ input.select(selectionHandle.position, cursorHandle.position)
+ input.blockRecursion = false
+ }
+ }
+ }
+}