mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 07:08:07 +00:00
- use vcard of Contact in qml - remove `sipAddress` attribute of Contact - refactoring...
62 lines
1.1 KiB
QML
62 lines
1.1 KiB
QML
import QtQuick 2.7
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import Common 1.0
|
|
import Linphone 1.0
|
|
|
|
// =============================================================================
|
|
|
|
ColumnLayout {
|
|
spacing: 0
|
|
|
|
ColumnLayout {
|
|
Layout.alignment: Qt.AlignTop
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
Layout.leftMargin: 50
|
|
Layout.topMargin: 50
|
|
spacing: 30
|
|
|
|
// Invit friends.
|
|
Column {
|
|
spacing: 8
|
|
|
|
Text {
|
|
color: '#5A585B'
|
|
font.bold: true
|
|
font.pointSize: 11
|
|
text: qsTr('invitContactQuestion')
|
|
}
|
|
|
|
TextButtonB {
|
|
text: qsTr('invitContact')
|
|
}
|
|
}
|
|
|
|
// Add contacts.
|
|
Column {
|
|
spacing: 8
|
|
|
|
Text {
|
|
color: '#5A585B'
|
|
font.bold: true
|
|
font.pointSize: 11
|
|
text: qsTr('addContactQuestion')
|
|
}
|
|
|
|
TextButtonB {
|
|
text: qsTr('addContact')
|
|
}
|
|
}
|
|
}
|
|
|
|
// Tooltip checkbox area.
|
|
CheckBoxText {
|
|
Layout.alignment: Qt.AlignBottom
|
|
Layout.fillWidth: true
|
|
Layout.leftMargin: 50
|
|
Layout.preferredHeight: 70
|
|
|
|
text: qsTr('displayTooltip')
|
|
}
|
|
}
|