mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-19 04:18:08 +00:00
51 lines
1.1 KiB
JavaScript
51 lines
1.1 KiB
JavaScript
// =============================================================================
|
|
// `TelKeypad.qml` Logic.
|
|
// =============================================================================
|
|
|
|
.import Linphone.Styles 1.0 as LinphoneStyles
|
|
|
|
.import 'qrc:/ui/scripts/Utils/utils.js' as Utils
|
|
|
|
// =============================================================================
|
|
|
|
function mapKeyToButtonIndex (key) {
|
|
// Digits.
|
|
if (key === 48) {
|
|
return 13
|
|
}
|
|
|
|
if (key >= 49 && key <= 57) {
|
|
return (key - 49) + parseInt((key - 49) / 3)
|
|
}
|
|
|
|
// A, B, C and D.
|
|
if (key >= 65 && key <= 68) {
|
|
return (key - 65) * 4 + 3
|
|
}
|
|
|
|
// *
|
|
if (key === 42) {
|
|
return 12
|
|
}
|
|
|
|
// #
|
|
if (key === 35) {
|
|
return 14
|
|
}
|
|
}
|
|
|
|
function sendDtmf (index) {
|
|
var children = grid.children[index]
|
|
|
|
children.color = LinphoneStyles.TelKeypadStyle.button.color.pressed
|
|
children.clicked()
|
|
|
|
var timeout = children._timeout
|
|
if (timeout) {
|
|
Utils.clearTimeout(timeout)
|
|
}
|
|
|
|
children._timeout = Utils.setTimeout(dragBox, 100, (function (index) {
|
|
grid.children[index].color = LinphoneStyles.TelKeypadStyle.button.color.normal
|
|
}).bind(dragBox, index))
|
|
}
|