mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-18 03:48:09 +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)
30 lines
No EOL
701 B
QML
30 lines
No EOL
701 B
QML
import QtQuick 2.15
|
|
import QtQuick.Effects
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls as Control
|
|
import Linphone
|
|
import UtilsCpp 1.0
|
|
|
|
Item {
|
|
id: mainItem
|
|
property color panelColor: DefaultStyle.grey_100
|
|
property alias headerContent: rightPanelHeader.children
|
|
property alias content: rightPanelContent.children
|
|
|
|
Rectangle {
|
|
id: rightPanelHeader
|
|
color: DefaultStyle.grey_0
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
height: 57 * DefaultStyle.dp
|
|
}
|
|
Rectangle {
|
|
id: rightPanelContent
|
|
color: mainItem.panelColor
|
|
anchors.top: rightPanelHeader.bottom
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.bottom: parent.bottom
|
|
}
|
|
} |