mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
3b5375d553
When first tested this commit, especially the dive list was looking terrible. However, after including newer SHA's from libkirigami, and correcting lots of spacing/margin issue, a retest of this commit shows no strange artifact any more, and the amount of warnings in the log output is reduced significantly. So now, it appears save to upgrade. Notice that main.qml still uses Kirigami 2.0. and is not updated in this commit. With version 2.2, there is a new way of theming, that is not (yet) compatible with our current code. Blindly upgrading to 2.2 leads to a almost black dive list, wrong button colors, and runtime errors in the log, due to the fact the direct setting from QML Kirigami's Theme colors is not allowed any more. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
29 lines
873 B
QML
29 lines
873 B
QML
// SPDX-License-Identifier: GPL-2.0
|
|
import QtQuick 2.3
|
|
import QtQuick.Controls 2.2
|
|
import org.kde.kirigami 2.2 as Kirigami
|
|
|
|
Switch {
|
|
id: root
|
|
indicator: Rectangle {
|
|
implicitWidth: Kirigami.Units.largeSpacing * 2.2
|
|
implicitHeight: Kirigami.Units.largeSpacing * 0.75
|
|
x: root.leftPadding
|
|
y: parent.height / 2 - height / 2
|
|
radius: height / 2
|
|
color: root.checked ?
|
|
subsurfaceTheme.lightPrimaryColor : subsurfaceTheme.backgroundColor
|
|
border.color: subsurfaceTheme.darkerPrimaryColor
|
|
|
|
Rectangle {
|
|
x: root.checked ? parent.width - width : 0
|
|
y: parent.height / 2 - height / 2
|
|
width: Kirigami.Units.largeSpacing * 1.1
|
|
height: Kirigami.Units.largeSpacing * 1.1
|
|
radius: height / 2
|
|
color: root.down || root.checked ?
|
|
subsurfaceTheme.primaryColor : subsurfaceTheme.lightPrimaryColor
|
|
border.color: subsurfaceTheme.darkerPrimaryColor
|
|
}
|
|
}
|
|
}
|