moment/src/gui/Base/HMenuItem.qml

35 lines
862 B
QML

// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.12
import QtQuick.Controls 2.12
MenuItem {
id: menuItem
spacing: theme.spacing
leftPadding: spacing
rightPadding: leftPadding
topPadding: spacing / 1.75
bottomPadding: topPadding
height: visible ? implicitHeight : 0
enabled: visible // prevent focusing invisible items by using keyboard
icon.color: theme.icons.colorize
background: HButtonBackground {
button: menuItem
buttonTheme: theme.controls.menuItem
useFocusLine: false
}
contentItem: HButtonContent {
id: contentItem
button: menuItem
buttonTheme: theme.controls.menuItem
label.horizontalAlignment: Label.AlignLeft
}
readonly property alias iconItem: contentItem.icon
readonly property alias label: contentItem.label
}