80 lines
3.0 KiB
QML
80 lines
3.0 KiB
QML
// Copyright (C) 2017 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
// Qt-Security score:significant reason:default
|
|
|
|
import QtQuick
|
|
import QtQuick.Templates as T
|
|
import QtQuick.Controls.impl
|
|
import QtQuick.Controls.Material
|
|
import QtQuick.Controls.Material.impl
|
|
|
|
T.MenuItem {
|
|
id: control
|
|
|
|
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
|
implicitContentWidth + leftPadding + rightPadding)
|
|
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
|
implicitContentHeight + topPadding + bottomPadding,
|
|
implicitIndicatorHeight + topPadding + bottomPadding)
|
|
|
|
padding: 16
|
|
verticalPadding: Material.menuItemVerticalPadding
|
|
spacing: 16
|
|
|
|
icon.width: 24
|
|
icon.height: 24
|
|
|
|
indicator: CheckIndicator {
|
|
x: control.text ? (control.mirrored ? control.width - width - control.rightPadding : control.leftPadding) : control.leftPadding + (control.availableWidth - width) / 2
|
|
y: control.topPadding + (control.availableHeight - height) / 2
|
|
visible: control.checkable
|
|
control: control
|
|
checkState: control.checked ? Qt.Checked : Qt.Unchecked
|
|
}
|
|
|
|
arrow: ColorImage {
|
|
x: control.mirrored ? control.padding : control.width - width - control.padding
|
|
y: control.topPadding + (control.availableHeight - height) / 2
|
|
|
|
visible: control.subMenu
|
|
mirror: control.mirrored
|
|
color: control.enabled ? control.Material.foreground : control.Material.hintTextColor
|
|
source: "qrc:/qt-project.org/imports/QtQuick/Controls/Material/images/arrow-indicator.png"
|
|
}
|
|
|
|
contentItem: IconLabel {
|
|
readonly property real arrowPadding: control.subMenu && control.arrow ? control.arrow.width + control.spacing : 0
|
|
readonly property real indicatorPadding: control.checkable && control.indicator ? control.indicator.width + control.spacing : 0
|
|
leftPadding: !control.mirrored ? indicatorPadding : arrowPadding
|
|
rightPadding: control.mirrored ? indicatorPadding : arrowPadding
|
|
|
|
spacing: control.spacing
|
|
mirrored: control.mirrored
|
|
display: control.display
|
|
alignment: Qt.AlignLeft
|
|
|
|
icon: control.icon
|
|
defaultIconColor: control.enabled ? control.Material.foreground : control.Material.hintTextColor
|
|
text: control.text
|
|
font: control.font
|
|
color: defaultIconColor
|
|
}
|
|
|
|
background: Rectangle {
|
|
implicitWidth: 200
|
|
implicitHeight: control.Material.menuItemHeight
|
|
color: control.highlighted ? control.Material.listHighlightColor : "transparent"
|
|
|
|
Ripple {
|
|
width: parent.width
|
|
height: parent.height
|
|
|
|
clip: visible
|
|
pressed: control.pressed
|
|
anchor: control
|
|
active: control.down || control.highlighted
|
|
color: control.Material.rippleColor
|
|
}
|
|
}
|
|
}
|