Commit e017c542 authored by Ronan Abhamon's avatar Ronan Abhamon

unstable (header of SmartSearch...)

parent 7e13551c
......@@ -12,6 +12,8 @@ import Utils 1.0
Item {
id: searchBox
property alias header: menu.header
property alias delegate: list.delegate
property alias entryHeight: menu.entryHeight
property alias maxMenuHeight: menu.maxMenuHeight
......
......@@ -10,6 +10,12 @@ import LinphoneUtils 1.0
SearchBox {
id: searchBox
header: Rectangle {
color: '#4B5964'
height: 40
width: 10
}
delegate: Rectangle {
id: searchBoxEntry
......@@ -45,24 +51,23 @@ SearchBox {
Avatar {
id: avatar
Layout.preferredHeight: 30
Layout.preferredWidth: 30
image: $entry.contact && $entry.contact.vcard.avatar
presenceLevel: $entry.contact ? $entry.contact.presenceLevel : -1
username: LinphoneUtils.getContactUsername($entry.contact || $entry.sipAddress)
}
Text {
ContactDescription {
Layout.fillHeight: true
Layout.fillWidth: true
color: '#4B5964'
elide: Text.ElideRight
font {
bold: true
pointSize: 9
}
text: $entry.contact ? $entry.contact.vcard.username : $entry.sipAddress
sipAddress: $entry.sipAddress
sipAddressColor: '#A1A1A1'
username: avatar.username
usernameColor: '#4B5964'
}
// ---------------------------------------------------------------------
......@@ -88,7 +93,7 @@ SearchBox {
searchBox.hideMenu()
window.ensureCollapsed()
window.setView('Conversation', {
sipAddress: $entry.sipAddress || $entry.vcard.sipAddresses[0] // FIXME: Display menu if many addresses.
sipAddress: $entry.sipAddress
})
}
}
......@@ -96,6 +101,12 @@ SearchBox {
}
}
Rectangle {
color: '#CBCBCB'
height: 1
width: parent.width
}
// -------------------------------------------------------------------------
states: State {
......
......@@ -3,7 +3,7 @@ import QtQuick 2.7
import Common 1.0
// ===================================================================
// =============================================================================
QtObject {
property int minimumHeight: 480
......@@ -30,7 +30,7 @@ QtObject {
}
property QtObject searchBox: QtObject {
property int entryHeight: 50
property int entryHeight: 51
property int maxHeight: 300 // See Hick's law for good choice.
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment