syncthingtray/plasmoid/package5/contents/ui/TabButton.qml

49 lines
1.4 KiB
QML

import QtQuick 2.8
import QtQuick.Templates 2.15 as T
import QtQuick.Layouts 1.1
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 3.0 as PlasmaComponents3
import org.kde.kirigami 2.5 as Kirigami
PlasmaComponents3.TabButton {
id: root
spacing: 0
property bool showTabText: plasmoid.nativeInterface.showTabTexts
property string tooltip: ""
PlasmaComponents3.ToolTip {
id: tooltip
text: root.tooltip !== "" ? root.tooltip : (root.showTabText ? "" : root.text)
visible: text !== "" && parent instanceof T.AbstractButton && (Kirigami.Settings.tabletMode ? parent.pressed : parent.hovered)
}
contentItem: RowLayout {
spacing: label.visible ? units.smallSpacing : 0
PlasmaCore.ColorScope.inherit: true
width: parent.width
Item {
Layout.fillWidth: true
}
Image {
id: image
Layout.preferredHeight: height
source: root.icon.source
cache: false
height: units.iconSizes.small
fillMode: Image.PreserveAspectFit
}
PlasmaComponents3.Label {
id: label
visible: text.length > 0
text: root.showTabText ? root.text : ""
color: PlasmaCore.ColorScope.textColor
elide: Text.ElideRight
Layout.fillHeight: true
}
Item {
Layout.fillWidth: true
}
}
}