3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-15 19:55:53 +00:00
Scare Crowe d2ebfd0519 QortalOS Titan 5.60.12
Screw the description like that inbred T3Q
2022-03-05 21:17:59 +05:00

48 lines
1.3 KiB
QML

/*
SPDX-FileCopyrightText: 2020 Tobias Fella <fella@posteo.de>
SPDX-License-Identifier: GPL-2.0-or-later
*/
import QtQuick 2.12
import QtQuick.Controls 2.12 as QQC2
import org.kde.kirigami 2.7 as Kirigami
QQC2.ComboBox {
id: comboBox
property string label
property var component
Kirigami.FormData.label: label
model: component.applications
textRole: "name"
currentIndex: component.index
onActivated: component.select(currentIndex, true)
delegate: QQC2.ItemDelegate {
width: comboBox.popup.width
text: modelData[comboBox.textRole]
highlighted: comboBox.highlightedIndex == index
icon.name: modelData.icon
}
// HACK QQC2 doesn't support icons, so we just tamper with the desktop style ComboBox's background
Component.onCompleted: {
if (!background || !background.hasOwnProperty("properties")) {
//not a KQuickStyleItem
return;
}
var props = background.properties || {};
background.properties = Qt.binding(function() {
var newProps = props;
newProps.currentIcon = component.applications[currentIndex]["icon"];
newProps.iconColor = Kirigami.Theme.textColor;
return newProps;
});
}
}