2020-06-17 19:31:01 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtGraphicalEffects 1.13
|
2020-05-27 21:09:12 +00:00
|
|
|
import "../imports"
|
2020-06-25 13:23:17 +00:00
|
|
|
import "../shared"
|
2020-05-27 20:42:24 +00:00
|
|
|
|
|
|
|
Menu {
|
|
|
|
property alias arrowX: bgPopupMenuTopArrow.x
|
2020-07-09 18:26:50 +00:00
|
|
|
property int paddingSize: 8
|
2020-07-09 17:47:36 +00:00
|
|
|
closePolicy: Popup.CloseOnPressOutside | Popup.CloseOnReleaseOutside | Popup.CloseOnEscape
|
2020-05-27 20:42:24 +00:00
|
|
|
id: popupMenu
|
2020-07-09 18:26:50 +00:00
|
|
|
topPadding: bgPopupMenuTopArrow.height + paddingSize
|
|
|
|
bottomPadding: paddingSize
|
|
|
|
|
2020-05-27 20:42:24 +00:00
|
|
|
delegate: MenuItem {
|
|
|
|
id: popupMenuItem
|
|
|
|
implicitWidth: 200
|
2020-07-09 18:26:50 +00:00
|
|
|
implicitHeight: 34
|
|
|
|
font.pixelSize: 13
|
2020-07-02 15:14:31 +00:00
|
|
|
icon.color: popupMenuItem.action.icon.color != "#00000000" ? popupMenuItem.action.icon.color : Style.current.blue
|
2020-05-27 20:42:24 +00:00
|
|
|
contentItem: Item {
|
2020-06-22 21:04:16 +00:00
|
|
|
id: menuItemContent
|
2020-07-09 18:26:50 +00:00
|
|
|
|
|
|
|
SVGImage {
|
2020-05-27 20:42:24 +00:00
|
|
|
id: menuIcon
|
2020-07-09 18:26:50 +00:00
|
|
|
source: popupMenuItem.icon.source
|
2020-05-27 20:42:24 +00:00
|
|
|
anchors.left: parent.left
|
2020-07-09 18:26:50 +00:00
|
|
|
anchors.leftMargin: Style.current.padding
|
2020-06-22 21:04:16 +00:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2020-07-09 18:26:50 +00:00
|
|
|
visible: false
|
2020-07-10 18:49:14 +00:00
|
|
|
width: popupMenuItem.action.icon.width ? popupMenuItem.action.icon.width : 25
|
|
|
|
height: popupMenuItem.action.icon.height ? popupMenuItem.action.icon.height : 25
|
2020-07-09 18:26:50 +00:00
|
|
|
}
|
2020-05-27 20:42:24 +00:00
|
|
|
|
2020-07-09 18:26:50 +00:00
|
|
|
ColorOverlay {
|
|
|
|
cached: true
|
|
|
|
anchors.fill: menuIcon
|
|
|
|
source: menuIcon
|
|
|
|
color: popupMenuItem.highlighted ? Style.current.white : popupMenuItem.action.icon.color
|
2020-05-27 20:42:24 +00:00
|
|
|
}
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-27 20:42:24 +00:00
|
|
|
anchors.left: menuIcon.right
|
2020-07-09 18:26:50 +00:00
|
|
|
anchors.leftMargin: popupMenu.paddingSize
|
2020-05-27 20:42:24 +00:00
|
|
|
text: popupMenuItem.text
|
2020-07-09 18:26:50 +00:00
|
|
|
anchors.verticalCenter: menuIcon.verticalCenter
|
2020-05-27 20:42:24 +00:00
|
|
|
font: popupMenuItem.font
|
2020-07-09 18:26:50 +00:00
|
|
|
color: popupMenuItem.highlighted ?
|
|
|
|
Style.current.white :
|
2020-07-13 18:45:54 +00:00
|
|
|
(popupMenuItem.action.icon.color != "#00000000" ? popupMenuItem.action.icon.color : Style.current.textColor)
|
2020-05-27 20:42:24 +00:00
|
|
|
horizontalAlignment: Text.AlignLeft
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
implicitWidth: 220
|
2020-07-09 18:26:50 +00:00
|
|
|
implicitHeight: 24
|
2020-06-12 14:01:46 +00:00
|
|
|
color: popupMenuItem.highlighted ? popupMenuItem.icon.color : "transparent"
|
2020-05-27 20:42:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
id: bgPopupMenu
|
|
|
|
implicitWidth: 220
|
|
|
|
color: "transparent"
|
|
|
|
Rectangle {
|
|
|
|
id: bgPopupMenuTopArrow
|
2020-07-13 18:45:54 +00:00
|
|
|
color: Style.current.modalBackground
|
2020-05-27 20:42:24 +00:00
|
|
|
height: 14
|
|
|
|
width: 14
|
|
|
|
rotation: 135
|
|
|
|
x: bgPopupMenu.width / 2 - width / 2
|
|
|
|
layer.enabled: true
|
|
|
|
layer.effect: DropShadow{
|
|
|
|
width: bgPopupMenuTopArrow.width
|
|
|
|
height: bgPopupMenuTopArrow.height
|
|
|
|
x: bgPopupMenuTopArrow.x
|
|
|
|
y: bgPopupMenuTopArrow.y + 10
|
|
|
|
visible: bgPopupMenuTopArrow.visible
|
|
|
|
source: bgPopupMenuTopArrow
|
|
|
|
horizontalOffset: 0
|
|
|
|
verticalOffset: 5
|
|
|
|
radius: 10
|
|
|
|
samples: 15
|
|
|
|
color: "#22000000"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: bgPopupMenuContent
|
|
|
|
y: 7
|
|
|
|
implicitWidth: bgPopupMenu.width
|
|
|
|
implicitHeight: bgPopupMenu.height
|
2020-07-13 18:45:54 +00:00
|
|
|
color: Style.current.modalBackground
|
2020-05-27 20:42:24 +00:00
|
|
|
radius: 16
|
|
|
|
layer.enabled: true
|
|
|
|
layer.effect: DropShadow{
|
|
|
|
width: bgPopupMenuContent.width
|
|
|
|
height: bgPopupMenuContent.height
|
|
|
|
x: bgPopupMenuContent.x
|
|
|
|
y: bgPopupMenuContent.y + 10
|
|
|
|
visible: bgPopupMenuContent.visible
|
|
|
|
source: bgPopupMenuContent
|
|
|
|
horizontalOffset: 0
|
|
|
|
verticalOffset: 7
|
|
|
|
radius: 10
|
|
|
|
samples: 15
|
|
|
|
color: "#22000000"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-06-04 14:53:10 +00:00
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;autoSize:true;height:480;width:640}
|
|
|
|
}
|
|
|
|
##^##*/
|