mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
mobile/UI: correctly theme combo boxes
Again, the fact that you basically need to completely reimplement the ComboBox in order to change some colors is frustrating. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
fe283857e1
commit
5979292469
1 changed files with 77 additions and 0 deletions
|
@ -5,8 +5,85 @@ import QtQuick.Layouts 1.11
|
||||||
import org.kde.kirigami 2.4 as Kirigami
|
import org.kde.kirigami 2.4 as Kirigami
|
||||||
|
|
||||||
ComboBox {
|
ComboBox {
|
||||||
|
id: cb
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.preferredHeight: Kirigami.Units.gridUnit * 2.5
|
Layout.preferredHeight: Kirigami.Units.gridUnit * 2.5
|
||||||
inputMethodHints: Qt.ImhNoPredictiveText
|
inputMethodHints: Qt.ImhNoPredictiveText
|
||||||
font.pointSize: subsurfaceTheme.regularPointSize
|
font.pointSize: subsurfaceTheme.regularPointSize
|
||||||
|
delegate: ItemDelegate {
|
||||||
|
width: cb.width
|
||||||
|
contentItem: Text {
|
||||||
|
text: modelData
|
||||||
|
color: subsurfaceTheme.textColor
|
||||||
|
font: cb.font
|
||||||
|
elide: Text.ElideRight
|
||||||
|
verticalAlignment: Text.AlignVCenter
|
||||||
|
}
|
||||||
|
highlighted: cb.highlightedIndex === index
|
||||||
|
}
|
||||||
|
|
||||||
|
indicator: Canvas {
|
||||||
|
id: canvas
|
||||||
|
x: cb.width - width - cb.rightPadding
|
||||||
|
y: cb.topPadding + (cb.availableHeight - height) / 2
|
||||||
|
width: Kirigami.Units.gridUnit
|
||||||
|
height: width * 0.66
|
||||||
|
contextType: "2d"
|
||||||
|
|
||||||
|
Connections {
|
||||||
|
target: cb
|
||||||
|
function onPressedChanged() { canvas.requestPaint(); }
|
||||||
|
}
|
||||||
|
|
||||||
|
onPaint: {
|
||||||
|
context.reset();
|
||||||
|
context.moveTo(0, 0);
|
||||||
|
context.lineTo(width, 0);
|
||||||
|
context.lineTo(width / 2, height);
|
||||||
|
context.closePath();
|
||||||
|
context.fillStyle = subsurfaceTheme.textColor;
|
||||||
|
context.fill();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
contentItem: Text {
|
||||||
|
leftPadding: Kirigami.Units.smallSpacing
|
||||||
|
rightPadding: cb.indicator.width + cb.spacing
|
||||||
|
text: cb.displayText
|
||||||
|
font: cb.font
|
||||||
|
color: subsurfaceTheme.textColor
|
||||||
|
verticalAlignment: Text.AlignVCenter
|
||||||
|
elide: Text.ElideRight
|
||||||
|
}
|
||||||
|
|
||||||
|
background: Rectangle {
|
||||||
|
implicitWidth: cb.width
|
||||||
|
implicitHeight: cb.height
|
||||||
|
border.color: subsurfaceTheme.darkerPrimaryColor
|
||||||
|
border.width: cb.visualFocus ? 2 : 1
|
||||||
|
color: subsurfaceTheme.backgroundColor
|
||||||
|
radius: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
popup: Popup {
|
||||||
|
y: cb.height - 1
|
||||||
|
width: cb.width
|
||||||
|
implicitHeight: contentItem.implicitHeight
|
||||||
|
padding: 1
|
||||||
|
|
||||||
|
contentItem: ListView {
|
||||||
|
clip: true
|
||||||
|
implicitHeight: contentHeight
|
||||||
|
model: cb.popup.visible ? cb.delegateModel : null
|
||||||
|
currentIndex: cb.highlightedIndex
|
||||||
|
|
||||||
|
ScrollIndicator.vertical: ScrollIndicator { }
|
||||||
|
}
|
||||||
|
|
||||||
|
background: Rectangle {
|
||||||
|
border.color: subsurfaceTheme.darkerPrimaryColor
|
||||||
|
color: subsurfaceTheme.backgroundColor
|
||||||
|
radius: 2
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue