1
0
Fork 0
flightgear/src/GUI/qml/ToggleSwitch.qml
James Turner 5020e4655e Launcher: explicit sizes in aircraft list
Fix some scaling issues when mixing pixel- and point- sized fonts,
especially on Windows
2018-03-05 10:49:30 +00:00

59 lines
1.4 KiB
QML

import QtQuick 2.0
import "."
Item {
property bool checked: false
property alias label: label.text
implicitWidth: track.width + label.width + 16
implicitHeight: label.height
Rectangle {
id: track
width: height * 2
height: radius * 2
radius: Style.roundRadius
color: checked ? Style.frameColor : Style.minorFrameColor
anchors.left: parent.left
anchors.leftMargin: Style.margin
anchors.verticalCenter: parent.verticalCenter
Rectangle {
id: thumb
width: radius * 2
height: radius * 2
radius: Style.roundRadius * 1.5
anchors.verticalCenter: parent.verticalCenter
color: checked ? Style.themeColor : "white"
border.width: 1
border.color: Style.inactiveThemeColor
x: checked ? parent.width - (track.radius + radius) : (track.radius - radius)
Behavior on x {
NumberAnimation {
duration: 250
}
}
}
}
Text {
id: label
anchors.left: track.right
anchors.leftMargin: Style.margin
anchors.verticalCenter: parent.verticalCenter
font.pixelSize: Style.baseFontPixelSize
}
MouseArea {
anchors.fill: parent
id: mouseArea
hoverEnabled: true
onClicked: {
checked = !checked
}
}
}