diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-09-17 23:29:26 -0700 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-10-04 21:15:20 +0000 |
commit | a2556f196bf439a270c7a6659daeb4434b45cf85 (patch) | |
tree | 923ea0c6d38cdb8d2e58491396d77c09cc27c8e6 /app/Notification.qml | |
parent | 4ab3093e029628fbd1ca73891c81373be884e85f (diff) |
messaging: add initial compose message pagehalibut_8.0.6halibut_8.0.5halibut_8.0.4halibut_8.0.3halibut_8.0.2halibut/8.0.6halibut/8.0.5halibut/8.0.4halibut/8.0.3halibut/8.0.28.0.68.0.58.0.48.0.38.0.2halibut
Add initial support for sending SMS messages. Along with support
for double clicking a message to autofill recipient field.
Bug-AGL: SPEC-2566
Change-Id: I214c2250f90d939c95b5e380272b37c0ba8dad64
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'app/Notification.qml')
-rw-r--r-- | app/Notification.qml | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/app/Notification.qml b/app/Notification.qml index 6be41ff..f283b76 100644 --- a/app/Notification.qml +++ b/app/Notification.qml @@ -27,10 +27,14 @@ Item { anchors.left: parent.left anchors.right: parent.right - ImageButton { - padding: 10 - offImage: '../images/HMI_Settings_X.svg' - onClicked: notificationModel.remove(index) + Image { + id: button + scale: 0.5 + source: '../images/HMI_Settings_X.svg' + MouseArea { + anchors.fill: button + onClicked: notificationModel.remove(index) + } } Label { text: '<b>' + name + '</b>' @@ -46,4 +50,18 @@ Item { wrapMode: Text.WordWrap } } + + MouseArea { + anchors.fill: parent + propagateComposedEvents: true + onClicked: { + mouse.accepted = false + } + onDoubleClicked: { + if (number) { + bar.setCurrentIndex(1) + compose.setNumber(number) + } + } + } } |