FirmwareUpgrade.qml 803 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2

import QGroundControl.Controls 1.0
import QGroundControl.FactControls 1.0
import QGroundControl.Palette 1.0

Rectangle {
    width: 600
    height: 400

    property var qgcPal: QGCPalette { colorGroup: QGCPalette.Active }

    color: qgcPal.window

    Text {
        text: "FIRMWARE UPDATE"
        color: qgcPal.windowText
        font.pointSize: 20
    }

    Column {
        QGCRadioButton {
            text: qsTr("Standard Version (stable)")
        }
        QGCRadioButton {
            text: qsTr("Beta Testing (beta)")
        }
        QGCRadioButton {
            text: qsTr("Developer Build (master)")
        }
        QGCRadioButton {
            text: qsTr("Custom firmware file...")
        }
    }
}