QML: Settings, about box, graphics update (bug 1554)
[gpodder.git] / share / gpodder / ui / qml / SettingsSwitch.qml
blobd257d8ce6977cb0fd10c364054adac0c96fc3b86
2 import QtQuick 1.1
3 import com.nokia.meego 1.0
5 Item {
6     id: settingsSwitch
7     property alias text: theLabel.text
8     property alias checked: theSwitch.checked
10     width: parent.width
11     height: theSwitch.height
13     Label {
14         id: theLabel
15         anchors.left: parent.left
16         anchors.right: theSwitch.left
17         elide: Text.ElideRight
18         anchors.verticalCenter: parent.verticalCenter
19     }
21     Switch {
22         id: theSwitch
23         anchors.right: parent.right
24     }