mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-20 04:58:09 +00:00
Simplify main menu. Display call history by account. Allow to remove reactions from chat. Fix crash on conference creation.
30 lines
678 B
QML
30 lines
678 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.3 as Controls
|
|
|
|
import Common 1.0
|
|
import Common.Styles 1.0
|
|
|
|
// =============================================================================
|
|
|
|
Controls.Menu {
|
|
id: menu
|
|
property var menuStyle : MenuStyle.normal
|
|
property alias radius: brackgroundArea.radius
|
|
width: menuStyle.width ? menuStyle.width : parent.width
|
|
background: Rectangle {
|
|
id: brackgroundArea
|
|
implicitWidth: menu.width
|
|
color: menuStyle.colorModel.color
|
|
radius: menuStyle.radius
|
|
|
|
border{
|
|
color:menuStyle.border.colorModel.color
|
|
width: menuStyle.border.width
|
|
}
|
|
|
|
layer {
|
|
enabled: menuStyle.shadowEnabled
|
|
effect: PopupShadow {}
|
|
}
|
|
}
|
|
}
|