mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-23 14:48:15 +00:00
25 lines
420 B
QML
25 lines
420 B
QML
import Common 1.0
|
|
import Linphone 1.0
|
|
|
|
// ===================================================================
|
|
|
|
SearchBox {
|
|
id: searchBox
|
|
|
|
delegate: Contact {
|
|
contact: $contact
|
|
width: parent.width
|
|
|
|
actions: [
|
|
ActionButton {
|
|
icon: 'call'
|
|
onClicked: CallsWindow.show()
|
|
},
|
|
|
|
ActionButton {
|
|
icon: 'video_call'
|
|
onClicked: CallsWindow.show()
|
|
}
|
|
]
|
|
}
|
|
}
|