linphone-desktop/Linphone/view/Layout/RightPanelLayout.qml
Gaelle Braud eb5b3b5141 FIXES :
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)
2024-04-26 18:27:19 +02:00

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
}
}