diff options
author | Richard Moe Gustavsen <richard.gustavsen@digia.com> | 2014-10-06 14:09:22 +0200 |
---|---|---|
committer | Richard Moe Gustavsen <richard.gustavsen@digia.com> | 2014-10-06 15:00:08 +0200 |
commit | 726babbcff54b589dbc46a2f53a4eb9f0ad03cb9 (patch) | |
tree | 3c380b8d755d34446f37524f0b137d6fe655d3ac /src/controls/Styles/Base | |
parent | 60911e61333f89b0e079444a2b790f5fd4d20a96 (diff) | |
download | qtquickcontrols-726babbcff54b589dbc46a2f53a4eb9f0ad03cb9.tar.gz |
add support for setting cursor delegate through style
Change-Id: I064c4df7213a8c1c0ecc38ea9b224444abf13d1d
Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/controls/Styles/Base')
-rw-r--r-- | src/controls/Styles/Base/ComboBoxStyle.qml | 5 | ||||
-rw-r--r-- | src/controls/Styles/Base/SpinBoxStyle.qml | 5 | ||||
-rw-r--r-- | src/controls/Styles/Base/TextAreaStyle.qml | 5 | ||||
-rw-r--r-- | src/controls/Styles/Base/TextFieldStyle.qml | 5 |
4 files changed, 20 insertions, 0 deletions
diff --git a/src/controls/Styles/Base/ComboBoxStyle.qml b/src/controls/Styles/Base/ComboBoxStyle.qml index f71c8c98..77d2e91e 100644 --- a/src/controls/Styles/Base/ComboBoxStyle.qml +++ b/src/controls/Styles/Base/ComboBoxStyle.qml @@ -317,4 +317,9 @@ Style { \endtable */ property Component selectionHandle + + /*! The cursor delegate. + \since QtQuick.Controls.Styles 1.3 + */ + property Component cursorDelegate } diff --git a/src/controls/Styles/Base/SpinBoxStyle.qml b/src/controls/Styles/Base/SpinBoxStyle.qml index 14d72863..1bcb6b5c 100644 --- a/src/controls/Styles/Base/SpinBoxStyle.qml +++ b/src/controls/Styles/Base/SpinBoxStyle.qml @@ -247,4 +247,9 @@ Style { \endtable */ property Component selectionHandle + + /*! The cursor delegate. + \since QtQuick.Controls.Styles 1.3 + */ + property Component cursorDelegate } diff --git a/src/controls/Styles/Base/TextAreaStyle.qml b/src/controls/Styles/Base/TextAreaStyle.qml index cc154a5d..bd3ed31e 100644 --- a/src/controls/Styles/Base/TextAreaStyle.qml +++ b/src/controls/Styles/Base/TextAreaStyle.qml @@ -141,4 +141,9 @@ ScrollViewStyle { \endtable */ property Component selectionHandle + + /*! The cursor delegate. + \since QtQuick.Controls.Styles 1.3 + */ + property Component cursorDelegate } diff --git a/src/controls/Styles/Base/TextFieldStyle.qml b/src/controls/Styles/Base/TextFieldStyle.qml index a7e5884a..c1e7a69f 100644 --- a/src/controls/Styles/Base/TextFieldStyle.qml +++ b/src/controls/Styles/Base/TextFieldStyle.qml @@ -194,4 +194,9 @@ Style { \endtable */ property Component selectionHandle + + /*! The cursor delegate. + \since QtQuick.Controls.Styles 1.3 + */ + property Component cursorDelegate } |