diff options
Diffstat (limited to 'app/Dialer.qml')
-rw-r--r-- | app/Dialer.qml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/Dialer.qml b/app/Dialer.qml index 03e9b41..29f251f 100644 --- a/app/Dialer.qml +++ b/app/Dialer.qml @@ -42,6 +42,7 @@ Item { onCallStateChanged: { if (telephony.callState == "incoming") { + pbap.search(telephony.callClip) rejectButton.active = true callStateLabel.text = "Incoming call from " + telephony.callClip } else if (telephony.callState == "dialing") { @@ -56,6 +57,20 @@ Item { } } + Connections { + target: pbap + + onSearchResults: { + if (name != "Not Found") { + if (telephony.callState == "incoming") { + callStateLabel.text = "Incoming call from " + name + } else if (telephony.callState == "dialing") { + callStateLabel.text = "Dialing " + name + } + } + } + } + function call(cname, cnumber) { name.text = cname var rawNumber = cnumber @@ -149,6 +164,7 @@ Item { if (telephony.callState == "incoming") { telephony.answer() } else { + pbap.search(number.text) telephony.dial(number.text) } } else { |