mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 15:18:07 +00:00
39 lines
789 B
QML
39 lines
789 B
QML
import QtQuick 2.7
|
|
|
|
Rectangle {
|
|
property alias entryName: text.text
|
|
property bool isSelected
|
|
|
|
color: isSelected ? '#434343' : '#8E8E8E'
|
|
|
|
Row {
|
|
anchors.fill: parent
|
|
anchors.leftMargin: 10
|
|
anchors.rightMargin: 10
|
|
spacing: 10
|
|
|
|
Image {
|
|
fillMode: Image.PreserveAspectFit
|
|
height: parent.height
|
|
width: 30
|
|
}
|
|
|
|
Text {
|
|
color: '#FFFFFF'
|
|
font.pointSize: 13
|
|
height: parent.height
|
|
id: text
|
|
verticalAlignment: Text.AlignVCenter
|
|
}
|
|
|
|
Image {
|
|
fillMode: Image.PreserveAspectFit
|
|
height: parent.height
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onClicked: { } // TODO.
|
|
}
|
|
}
|