summaryrefslogtreecommitdiff
path: root/src/controls/Styles/Android/ComboBoxStyle.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/Styles/Android/ComboBoxStyle.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/Styles/Android/ComboBoxStyle.qml')
-rw-r--r--src/controls/Styles/Android/ComboBoxStyle.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controls/Styles/Android/ComboBoxStyle.qml b/src/controls/Styles/Android/ComboBoxStyle.qml
index 715dd9f6..b6ff1c30 100644
--- a/src/controls/Styles/Android/ComboBoxStyle.qml
+++ b/src/controls/Styles/Android/ComboBoxStyle.qml
@@ -105,11 +105,11 @@ Style {
property Component __popupStyle: null
property Component __dropDownStyle: null
- property Component selectionHandle: DrawableLoader {
+ property Component __selectionHandle: DrawableLoader {
styleDef: AndroidStyle.styleDef.textViewStyle.TextView_textSelectHandleLeft
x: -width / 4 * 3
y: styleData.lineHeight
}
- property Component cursorHandle: CursorHandleStyle { }
+ property Component __cursorHandle: CursorHandleStyle { }
}