mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-28 06:33:09 +00:00
dtmf tones
This commit is contained in:
parent
b669fa97a0
commit
8842d19dd0
2 changed files with 3 additions and 1 deletions
|
|
@ -28,7 +28,6 @@ Item {
|
|||
id: dialer
|
||||
|
||||
property color textColor: "white"
|
||||
property bool enableButtons: calling
|
||||
property alias numberEntryText: status.text
|
||||
|
||||
property string providerId: voiceCallmanager.providers.id(0)
|
||||
|
|
|
|||
|
|
@ -13,6 +13,9 @@ Text {
|
|||
|
||||
MouseArea {
|
||||
anchors.fill: parent
|
||||
onPressed: voiceCallmanager.startDtmfTone(parent.text);
|
||||
onReleased: voiceCallmanager.stopDtmfTone();
|
||||
onCanceled: voiceCallmanager.stopDtmfTone();
|
||||
onClicked: {
|
||||
if (callback) {
|
||||
callback();
|
||||
|
|
|
|||
Loading…
Reference in a new issue