mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-30 02:19:23 +00:00
conf creation loading+error; fix info popup layout move contact edition in contact page (switch to contact tab if creation requested) fix contact creation + select new contact on creation conference info list : creation signal (to finish when conference scheduler is updated, see comment) fix crash if no vcard fix calendar ui +spacings layout polish (! on string in meetinglist)
32 lines
No EOL
773 B
QML
32 lines
No EOL
773 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.3
|
|
import QtQuick.Controls
|
|
import Linphone
|
|
|
|
Popup {
|
|
id: mainItem
|
|
property string text
|
|
modal: true
|
|
closePolicy: Control.Popup.NoAutoClose
|
|
anchors.centerIn: parent
|
|
padding: 20 * DefaultStyle.dp
|
|
underlineColor: DefaultStyle.main1_500_main
|
|
radius: 15 * DefaultStyle.dp
|
|
// onAboutToShow: width = contentText.implicitWidth
|
|
contentItem: ColumnLayout {
|
|
spacing: 15 * DefaultStyle.dp
|
|
BusyIndicator{
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.preferredWidth: 33 * DefaultStyle.dp
|
|
Layout.preferredHeight: 33 * DefaultStyle.dp
|
|
}
|
|
Text {
|
|
id: contentText
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
text: mainItem.text
|
|
font.pixelSize: 14 * DefaultStyle.dp
|
|
}
|
|
}
|
|
} |