status-desktop/ui/shared/status/StatusSectionMenuItem.qml
Alexandra Betouni 4ee21ada05 feat(desktop) Added image function in Style
Introduced Style.svg() Style.png() Style.emoji() and
Style.icon() in Style.qml. Those should be used to
set the source in Images instead of using relative
paths. Usage:
Image {
   source: Style.svg("check)
   ....

Also moved all Singletons inside a new "utils"
folder and made it a QML module, to use
import utils 1.0 instead of relative paths

Closes #3678
2021-09-28 15:28:00 -04:00

79 lines
1.7 KiB
QML

import QtQuick 2.13
import QtQuick.Controls 2.13
import QtQuick.Layouts 1.13
import QtGraphicalEffects 1.13
import utils 1.0
import "../../shared"
Button {
id: control
property string label: ""
property string description: ""
property string info: ""
width: parent.width
horizontalPadding: 0
background: Rectangle {
anchors.fill: parent
color: "transparent"
}
contentItem: RowLayout {
id: item
width: parent.width
Column {
spacing: 2
StyledText {
text: control.label
font.pixelSize: 15
}
StyledText {
text: control.description
color: Style.current.secondaryText
font.pixelSize: 15
}
}
Item {
Layout.alignment: Qt.AlignRight
height: info.height
StyledText {
id: info
text: control.info
color: Style.current.secondaryText
font.pixelSize: 15
anchors.right: icon.left
anchors.rightMargin: icon.width + Style.current.padding
}
SVGImage {
id: icon
source: Style.svg("caret")
width: 13
height: 7
rotation: -90
anchors.verticalCenter: parent.verticalCenter
}
ColorOverlay {
anchors.fill: icon
source: icon
color: Style.current.darkGrey
rotation: -90
antialiasing: true
}
}
}
MouseArea {
cursorShape: Qt.PointingHandCursor
anchors.fill: parent
onPressed: mouse.accepted = false
}
}