linphone-desktop/tests/ui/modules/Linphone/SmartSearchBar.qml
Ronan Abhamon 08fbc20c97 feat(app): many changes:
- use vcard of Contact in qml
- remove `sipAddress` attribute of Contact
- refactoring...
2016-12-14 13:20:35 +01:00

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()
}
]
}
}