162 lines
4.4 KiB
QML
162 lines
4.4 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import qs.Commons
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
RowLayout {
|
|
id: root
|
|
|
|
property real minimumWidth: 280 * scaling
|
|
property real popupHeight: 180 * scaling
|
|
|
|
property string label: ""
|
|
property string description: ""
|
|
property ListModel model: {
|
|
|
|
}
|
|
property string currentKey: ""
|
|
property string placeholder: ""
|
|
|
|
readonly property real preferredHeight: Style.baseWidgetSize * 1.1 * scaling
|
|
|
|
signal selected(string key)
|
|
|
|
spacing: Style.marginL * scaling
|
|
Layout.fillWidth: true
|
|
|
|
function findIndexByKey(key) {
|
|
for (var i = 0; i < root.model.count; i++) {
|
|
if (root.model.get(i).key === key) {
|
|
return i
|
|
}
|
|
}
|
|
return -1
|
|
}
|
|
|
|
NLabel {
|
|
label: root.label
|
|
description: root.description
|
|
}
|
|
|
|
Item {
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
ComboBox {
|
|
id: combo
|
|
|
|
Layout.minimumWidth: root.minimumWidth
|
|
Layout.preferredHeight: root.preferredHeight
|
|
model: model
|
|
currentIndex: findIndexByKey(currentKey)
|
|
onActivated: {
|
|
root.selected(model.get(combo.currentIndex).key)
|
|
}
|
|
|
|
background: Rectangle {
|
|
implicitWidth: Style.baseWidgetSize * 3.75 * scaling
|
|
implicitHeight: preferredHeight
|
|
color: Color.mSurface
|
|
border.color: combo.activeFocus ? Color.mSecondary : Color.mOutline
|
|
border.width: Math.max(1, Style.borderS * scaling)
|
|
radius: Style.radiusM * scaling
|
|
|
|
Behavior on border.color {
|
|
ColorAnimation {
|
|
duration: Style.animationFast
|
|
}
|
|
}
|
|
}
|
|
|
|
contentItem: NText {
|
|
leftPadding: Style.marginL * scaling
|
|
rightPadding: combo.indicator.width + Style.marginL * scaling
|
|
font.pointSize: Style.fontSizeM * scaling
|
|
verticalAlignment: Text.AlignVCenter
|
|
elide: Text.ElideRight
|
|
color: (combo.currentIndex >= 0 && combo.currentIndex < root.model.count) ? Color.mOnSurface : Color.mOnSurfaceVariant
|
|
text: (combo.currentIndex >= 0 && combo.currentIndex < root.model.count) ? root.model.get(combo.currentIndex).name : root.placeholder
|
|
}
|
|
|
|
indicator: NIcon {
|
|
x: combo.width - width - Style.marginM * scaling
|
|
y: combo.topPadding + (combo.availableHeight - height) / 2
|
|
icon: "caret-down"
|
|
font.pointSize: Style.fontSizeL * scaling
|
|
}
|
|
|
|
popup: Popup {
|
|
y: combo.height
|
|
width: combo.width
|
|
implicitHeight: Math.min(root.popupHeight, contentItem.implicitHeight + Style.marginM * scaling * 2)
|
|
padding: Style.marginM * scaling
|
|
|
|
contentItem: ListView {
|
|
property var comboBoxRoot: root
|
|
clip: true
|
|
implicitHeight: contentHeight
|
|
model: combo.popup.visible ? root.model : null
|
|
ScrollIndicator.vertical: ScrollIndicator {}
|
|
|
|
delegate: ItemDelegate {
|
|
width: combo.width
|
|
hoverEnabled: true
|
|
highlighted: ListView.view.currentIndex === index
|
|
|
|
onHoveredChanged: {
|
|
if (hovered) {
|
|
ListView.view.currentIndex = index
|
|
}
|
|
}
|
|
|
|
onClicked: {
|
|
ListView.view.comboBoxRoot.selected(ListView.view.comboBoxRoot.model.get(index).key)
|
|
combo.currentIndex = index
|
|
combo.popup.close()
|
|
}
|
|
|
|
contentItem: NText {
|
|
text: name
|
|
font.pointSize: Style.fontSizeM * scaling
|
|
color: highlighted ? Color.mSurface : Color.mOnSurface
|
|
verticalAlignment: Text.AlignVCenter
|
|
elide: Text.ElideRight
|
|
Behavior on color {
|
|
ColorAnimation {
|
|
duration: Style.animationFast
|
|
}
|
|
}
|
|
}
|
|
|
|
background: Rectangle {
|
|
width: combo.width - Style.marginM * scaling * 3
|
|
color: highlighted ? Color.mTertiary : Color.transparent
|
|
radius: Style.radiusS * scaling
|
|
Behavior on color {
|
|
ColorAnimation {
|
|
duration: Style.animationFast
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
background: Rectangle {
|
|
color: Color.mSurfaceVariant
|
|
border.color: Color.mOutline
|
|
border.width: Math.max(1, Style.borderS * scaling)
|
|
radius: Style.radiusM * scaling
|
|
}
|
|
}
|
|
|
|
// Update the currentIndex if the currentKey is changed externalyu
|
|
Connections {
|
|
target: root
|
|
function onCurrentKeyChanged() {
|
|
combo.currentIndex = root.findIndexByKey(currentKey)
|
|
}
|
|
}
|
|
}
|
|
}
|