matrixion/resources/qml/ToggleButton.qml

45 lines
1 KiB
QML
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
//
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.5
import QtQuick 2.12
import QtQuick.Controls 2.12
import im.nheko 1.0
Switch {
id: toggleButton
implicitWidth: indicatorItem.width
indicator: Item {
id: indicatorItem
implicitWidth: 48
implicitHeight: 24
y: parent.height / 2 - height / 2
Rectangle {
height: 3 * parent.height / 4
radius: height / 2
width: parent.width - height
x: radius
y: parent.height / 2 - height / 2
2023-03-01 18:49:17 +03:00
color: toggleButton.checked ? Nheko.colors.highlight : "grey"
border.color: "#cccccc"
2021-02-13 19:19:21 +03:00
}
Rectangle {
x: toggleButton.checked ? parent.width - width : 0
y: parent.height / 2 - height / 2
width: parent.height
height: width
radius: width / 2
2022-01-09 02:28:03 +03:00
color: toggleButton.enabled ? "whitesmoke" : "#cccccc"
border.color: "#ebebeb"
2021-02-13 19:19:21 +03:00
}
2021-02-13 19:19:21 +03:00
}
}