mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-23 06:38:07 +00:00
28 lines
545 B
QML
28 lines
545 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
|
|
|
|
background: Rectangle {
|
|
implicitWidth: menu.width
|
|
color: menuStyle.color
|
|
radius: menuStyle.radius
|
|
|
|
border{
|
|
color:menuStyle.border.color
|
|
width: menuStyle.border.width
|
|
}
|
|
|
|
layer {
|
|
enabled: menuStyle.shadowEnabled
|
|
effect: PopupShadow {}
|
|
}
|
|
}
|
|
}
|