mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-21 22:48:31 +00:00
30 lines
669 B
QML
30 lines
669 B
QML
import QtQuick 2.7
|
|
|
|
// ===================================================================
|
|
|
|
Column {
|
|
property alias sipAddress: sipAddress.text
|
|
property alias username: username.text
|
|
|
|
// Username.
|
|
Text {
|
|
clip: true
|
|
color: '#5A585B'
|
|
font.pointSize: 11
|
|
font.weight: Font.DemiBold
|
|
height: parent.height / 2
|
|
id: username
|
|
verticalAlignment: Text.AlignBottom
|
|
width: parent.width
|
|
}
|
|
|
|
// Sip address.
|
|
Text {
|
|
clip: true
|
|
color: '#5A585B'
|
|
height: parent.height / 2
|
|
id: sipAddress
|
|
verticalAlignment: Text.AlignTop
|
|
width: parent.width
|
|
}
|
|
}
|