mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-02 12:19:23 +00:00
- use vcard of Contact in qml - remove `sipAddress` attribute of Contact - refactoring...
25 lines
423 B
QML
25 lines
423 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()
|
|
}
|
|
]
|
|
}
|
|
}
|