diff options
author | Jan Arve Saether <jan-arve.saether@digia.com> | 2014-10-15 13:58:34 +0200 |
---|---|---|
committer | Jan Arve Sæther <jan-arve.saether@theqtcompany.com> | 2014-10-27 14:53:16 +0100 |
commit | 8f6436f125faae91eb472ddddbbae06dba5da671 (patch) | |
tree | cd99bd534e9e01ebddda584eb24a8bae3b195895 /examples/quick | |
parent | 32af8055985c1f978574eec62512638f472e8290 (diff) | |
download | qtdeclarative-8f6436f125faae91eb472ddddbbae06dba5da671.tar.gz qtdeclarative-8f6436f125faae91eb472ddddbbae06dba5da671.tar.bz2 qtdeclarative-8f6436f125faae91eb472ddddbbae06dba5da671.zip |
Move action handlers to the Accessible attached object
With this change, instead of writing:
function accessiblePressAction() { submit() }
You should write:
Accessible.onPressAction: { submit() }
For the moment, only 4 actions are added:
press, toggle, increase and decrease.
The old style action handlers are deprecated, and removed from the
documentation. New style action handlers will be preferred in case an
item declares both styles.
Change-Id: I11919e631d8476d55540f94252757b911c44ade4
Reviewed-by: Frederik Gladhorn <frederik.gladhorn@theqtcompany.com>
Diffstat (limited to 'examples/quick')
-rw-r--r-- | examples/quick/quick-accessibility/content/Button.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/quick/quick-accessibility/content/Button.qml b/examples/quick/quick-accessibility/content/Button.qml index 96704de4f..2baa66f91 100644 --- a/examples/quick/quick-accessibility/content/Button.qml +++ b/examples/quick/quick-accessibility/content/Button.qml @@ -42,7 +42,7 @@ Rectangle { Accessible.name: text Accessible.description: "This button does " + text Accessible.role: Accessible.Button - function accessiblePressAction() { + Accessible.onPressAction: { button.clicked() } //! [button] |