AirspaceRegulation.qml 2.24 KB
Newer Older
Gus Grubba's avatar
Gus Grubba committed
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
import QtQuick                  2.3
import QtQuick.Controls         1.2
import QtQuick.Controls.Styles  1.4
import QtQuick.Dialogs          1.2
import QtQml                    2.2

import QGroundControl               1.0
import QGroundControl.ScreenTools   1.0
import QGroundControl.Controls      1.0
import QGroundControl.Palette       1.0
import QGroundControl.Airmap        1.0

Item {
    id:     _root
    height: regCol.height

    property var textColor:     "white"
    property var regColor:      "white"
    property var regTitle:      ""
    property var regText:       ""

    Column {
        id:                     regCol
        spacing:                ScreenTools.defaultFontPixelHeight * 0.5
        anchors.left:           parent.left
        anchors.leftMargin:     ScreenTools.defaultFontPixelWidth  * 0.5
        anchors.right:          parent.right
        anchors.rightMargin:    ScreenTools.defaultFontPixelWidth  * 0.5
        Row {
            spacing:                    ScreenTools.defaultFontPixelWidth
            anchors.left:               parent.left
            anchors.leftMargin:         ScreenTools.defaultFontPixelWidth * 0.5
            anchors.right:              parent.right
            anchors.rightMargin:        ScreenTools.defaultFontPixelWidth * 0.5
            Rectangle {
                width:                  height
                height:                 ScreenTools.defaultFontPixelWidth * 1.5
                radius:                 height * 0.5
                color:                  regColor
                anchors.verticalCenter: parent.verticalCenter
            }
            QGCLabel {
                text:                   regTitle
                color:                  textColor
            }
        }
        QGCLabel {
            text:                       regText
            color:                      textColor
            anchors.left:               parent.left
            anchors.leftMargin:         ScreenTools.defaultFontPixelWidth * 0.5
            anchors.right:              parent.right
            anchors.rightMargin:        ScreenTools.defaultFontPixelWidth * 0.5
            wrapMode:                   Text.WordWrap
            font.pointSize:             ScreenTools.smallFontPointSize
        }
    }
}