SectionHeader.qml 2.03 KB
Newer Older
1 2 3
import QtQuick          2.3
import QtQuick.Controls 1.2
import QtQuick.Layouts  1.2
4
import QtGraphicalEffects 1.0
5 6 7 8

import QGroundControl.ScreenTools   1.0
import QGroundControl.Palette       1.0

9
FocusScope {
10
    id:             _root
11 12
    anchors.left:   parent.left
    anchors.right:  parent.right
13
    height:         column.height
14

15 16 17 18
    property alias          text:           label.text
    property bool           checked:        true
    property bool           showSpacer:     true
    property ExclusiveGroup exclusiveGroup: null
19

20 21 22 23 24 25
    property real   _sectionSpacer: ScreenTools.defaultFontPixelWidth / 2  // spacing between section headings

    onExclusiveGroupChanged: {
        if (exclusiveGroup)
            exclusiveGroup.bindCheckable(_root)
    }
26

27
    QGCPalette { id: qgcPal; colorGroupEnabled: enabled }
28

29 30
    QGCMouseArea {
        anchors.fill: parent
31

32 33 34
        onClicked: {
            _root.focus = true
            checked = !checked
35 36
        }

37 38 39 40
        ColumnLayout {
            id:             column
            anchors.left:   parent.left
            anchors.right:  parent.right
41

42 43 44 45
            Item {
                height:     _sectionSpacer
                width:      1
                visible:    showSpacer
46 47
            }

48
            QGCLabel {
49 50
                id:                 label
                Layout.fillWidth:   true
51 52 53

                QGCColoredImage {
                    id:                     image
54 55
                    anchors.right:          parent.right
                    anchors.verticalCenter: parent.verticalCenter
56 57 58 59 60 61 62 63 64
                    width:                  label.height / 2
                    height:                 width
                    source:                 "/qmlimages/arrow-down.png"
                    color:                  qgcPal.text
                    visible:                !_root.checked
                }
            }

            Rectangle {
65 66 67
                Layout.fillWidth:   true
                height:             1
                color:              qgcPal.text
68
            }
69
        }
70 71
    }
}