70 lines
1.9 KiB
QML
70 lines
1.9 KiB
QML
import QtQuick 2.12
|
|
import QtQuick.Layouts 1.12
|
|
import QtQuick.Controls 2.5
|
|
import org.ukui.menu.core 1.0
|
|
import "../extensions" as Extension
|
|
import org.ukui.quick.platform 1.0 as Platform
|
|
import org.ukui.quick.items 1.0 as UkuiItems
|
|
|
|
MouseArea {
|
|
id: control
|
|
property bool isSelect: false
|
|
hoverEnabled: true
|
|
states: State {
|
|
when: control.activeFocus
|
|
PropertyChanges {
|
|
target: controlBase
|
|
borderColor: Platform.Theme.Highlight
|
|
border.width: 2
|
|
}
|
|
}
|
|
|
|
UkuiItems.Tooltip {
|
|
anchors.fill: parent
|
|
mainText: name
|
|
posFollowCursor: true
|
|
margin: 6
|
|
visible: content.textTruncated
|
|
}
|
|
|
|
UkuiItems.StyleBackground {
|
|
id: controlBase
|
|
anchors.fill: parent
|
|
radius: Platform.Theme.minRadius
|
|
useStyleTransparency: false
|
|
paletteRole: Platform.Theme.Text
|
|
alpha: isSelect ? 1.00 : control.containsPress ? 0.16 : control.containsMouse ? 0.08 : 0.00
|
|
|
|
RowLayout {
|
|
anchors.fill: parent
|
|
spacing: 2
|
|
|
|
IconLabel {
|
|
id: content
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
iconHeight: 32; iconWidth: iconHeight
|
|
appName: name; appIcon: icon
|
|
display: Display.TextBesideIcon
|
|
spacing: 12
|
|
}
|
|
|
|
Extension.EditModeFlag {
|
|
Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
Layout.maximumWidth: visible ? 28 : 0
|
|
Layout.maximumHeight: width
|
|
Layout.rightMargin: visible ? 4 : 0
|
|
|
|
isFavorited: favorite
|
|
onClicked: {
|
|
appManager.changeFavoriteState(id, !isFavorited);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|