summaryrefslogtreecommitdiff
path: root/src/controls/TextField.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2014-10-29 17:29:16 +0100
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2014-10-30 10:43:16 +0100
commit3a851dfd4078b3ca9f9c1b06424b136cc6f852c5 (patch)
tree8df32ef561f75be2b50fb95a04bb44463b34b0f0 /src/controls/TextField.qml
parent052dea3003b393d2ebb6754d0ed2fd7329cd8d26 (diff)
downloadqtquickcontrols-3a851dfd4078b3ca9f9c1b06424b136cc6f852c5.tar.gz
Make the cursor and selection handle delegates private for now
The API is not ideal, we don't want to lock this thing down like as it is now. All styles implemented so far created CursorHandleStyle.qml and SelectionHandleStyle.qml so perhaps that's the better way to go. Furthermore, there's never going to be multiple occurrences of the handle pairs, so it should be one shared instance. Thus, the relevant style delegates probably shouldn't be sprinkled around various control styles... So, for now, the most pragmatic solution is to make the handles and cursors internal since we don't have time to revamp it before 5.4.0. Change-Id: Ib9fcc4a431bb510c8c55a760159f4d6a631554b3 Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@theqtcompany.com> Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@digia.com>
Diffstat (limited to 'src/controls/TextField.qml')
-rw-r--r--src/controls/TextField.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controls/TextField.qml b/src/controls/TextField.qml
index a7aa67eb..5c1e5e51 100644
--- a/src/controls/TextField.qml
+++ b/src/controls/TextField.qml
@@ -633,8 +633,8 @@ Control {
selectedTextColor: __panel ? __panel.selectedTextColor : "white"
control: textfield
- cursorHandle: __style ? __style.cursorHandle : undefined
- selectionHandle: __style ? __style.selectionHandle : undefined
+ cursorHandle: __style ? __style.__cursorHandle : undefined
+ selectionHandle: __style ? __style.__selectionHandle : undefined
font: __panel ? __panel.font : TextSingleton.font
anchors.leftMargin: __panel ? __panel.leftMargin : 0