LogDownload.qml 7.09 KB
Newer Older
1 2 3 4 5 6 7 8
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
dogmaphobic's avatar
dogmaphobic committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23


import QtQuick                  2.5
import QtQuick.Controls         1.2
import QtQuick.Controls.Styles  1.2
import QtQuick.Dialogs          1.2

import QGroundControl.Palette       1.0
import QGroundControl.Controls      1.0
import QGroundControl.Controllers   1.0
import QGroundControl.ScreenTools   1.0

QGCView {
    viewPanel:  panel

dogmaphobic's avatar
dogmaphobic committed
24 25
    property real _margins:         ScreenTools.defaultFontPixelHeight
    property real _butttonWidth:    ScreenTools.defaultFontPixelWidth * 10
dogmaphobic's avatar
dogmaphobic committed
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

    LogDownloadController {
        id:         controller
        factPanel:  panel
        onSelectionChanged: {
            tableView.selection.clear()
            for(var i = 0; i < controller.model.count; i++) {
                var o = controller.model.get(i)
                if (o && o.selected) {
                    tableView.selection.select(i, i)
                }
            }
        }
    }

    QGCPalette { id: palette; colorGroupEnabled: enabled }

    QGCViewPanel {
        id:             panel
        anchors.fill:   parent

        TableView {
            id: tableView
            anchors.margins:    _margins
            anchors.left:       parent.left
            anchors.right:      refreshButton.left
            anchors.top:        parent.top
            anchors.bottom:     parent.bottom
            model:              controller.model
            selectionMode:      SelectionMode.MultiSelection

            TableViewColumn {
58
                title: qsTr("Id")
59
                width: ScreenTools.defaultFontPixelWidth * 6
dogmaphobic's avatar
dogmaphobic committed
60 61 62 63 64 65 66 67 68 69 70
                horizontalAlignment: Text.AlignHCenter
                delegate : Text  {
                    horizontalAlignment: Text.AlignHCenter
                    text: {
                        var o = controller.model.get(styleData.row)
                        return o ? o.id : ""
                    }
                }
            }

            TableViewColumn {
71
                title: qsTr("Date")
72
                width: ScreenTools.defaultFontPixelWidth * 34
dogmaphobic's avatar
dogmaphobic committed
73 74 75 76 77 78 79 80
                horizontalAlignment: Text.AlignHCenter
                delegate : Text  {
                    text: {
                        var o = controller.model.get(styleData.row)
                        if (o) {
                            //-- Have we received this entry already?
                            if(controller.model.get(styleData.row).received) {
                                var d = controller.model.get(styleData.row).time
dogmaphobic's avatar
dogmaphobic committed
81
                                if(d.getUTCFullYear() < 2010)
82
                                    return qsTr("Date Unknown")
dogmaphobic's avatar
dogmaphobic committed
83 84 85 86 87 88 89 90 91 92
                                else
                                    return d.toLocaleString()
                            }
                        }
                        return ""
                    }
                }
            }

            TableViewColumn {
93
                title: qsTr("Size")
94
                width: ScreenTools.defaultFontPixelWidth * 18
dogmaphobic's avatar
dogmaphobic committed
95 96 97 98 99
                horizontalAlignment: Text.AlignHCenter
                delegate : Text  {
                    horizontalAlignment: Text.AlignRight
                    text: {
                        var o = controller.model.get(styleData.row)
100
                        return o ? o.sizeStr : ""
dogmaphobic's avatar
dogmaphobic committed
101 102 103 104 105
                    }
                }
            }

            TableViewColumn {
106
                title: qsTr("Status")
107
                width: ScreenTools.defaultFontPixelWidth * 22
dogmaphobic's avatar
dogmaphobic committed
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
                horizontalAlignment: Text.AlignHCenter
                delegate : Text  {
                    horizontalAlignment: Text.AlignHCenter
                    text: {
                        var o = controller.model.get(styleData.row)
                        return o ? o.status : ""
                    }
                }
            }

        }

        QGCButton {
            id:                 refreshButton
            anchors.margins:    _margins
            anchors.top:        parent.top
            anchors.right:      parent.right
            enabled:            !controller.requestingList && !controller.downloadingLogs
126
            text:               qsTr("Refresh")
dogmaphobic's avatar
dogmaphobic committed
127
            width:              _butttonWidth
dogmaphobic's avatar
dogmaphobic committed
128 129 130 131 132 133 134 135 136 137 138
            onClicked: {
                controller.refresh()
            }
        }

        QGCButton {
            id:                 downloadButton
            anchors.margins:    _margins
            anchors.top:        refreshButton.bottom
            anchors.right:      parent.right
            enabled:            !controller.requestingList && !controller.downloadingLogs && tableView.selection.count > 0
139
            text:               qsTr("Download")
dogmaphobic's avatar
dogmaphobic committed
140
            width:              _butttonWidth
dogmaphobic's avatar
dogmaphobic committed
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
            onClicked: {
                //-- Clear selection
                for(var i = 0; i < controller.model.count; i++) {
                    var o = controller.model.get(i)
                    if (o) o.selected = false
                }
                //-- Flag selected log files
                tableView.selection.forEach(function(rowIndex){
                    var o = controller.model.get(rowIndex)
                    if (o) o.selected = true
                })
                //-- Download them
                controller.download()
            }
        }

        QGCButton {
            id:                 eraseAllButton
            anchors.margins:    _margins
            anchors.top:        downloadButton.bottom
            anchors.right:      parent.right
            enabled:            !controller.requestingList && !controller.downloadingLogs && controller.model.count > 0
163
            text:               qsTr("Erase All")
dogmaphobic's avatar
dogmaphobic committed
164
            width:              _butttonWidth
dogmaphobic's avatar
dogmaphobic committed
165 166 167 168 169 170 171 172
            onClicked: {
                eraseAllDialog.visible = true
            }
            MessageDialog {
                id:         eraseAllDialog
                visible:    false
                icon:       StandardIcon.Warning
                standardButtons: StandardButton.Yes | StandardButton.No
173 174
                title:      qsTr("Delete All Log Files")
                text:       qsTr("All log files will be erased permanently. Is this really what you want?")
dogmaphobic's avatar
dogmaphobic committed
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
                onYes: {
                    controller.eraseAll()
                    eraseAllDialog.visible = false
                }
                onNo: {
                    eraseAllDialog.visible = false
                }
            }
        }

        QGCButton {
            id:                 cancelButton
            anchors.margins:    _margins
            anchors.top:        eraseAllButton.bottom
            anchors.right:      parent.right
190
            text:               qsTr("Cancel")
dogmaphobic's avatar
dogmaphobic committed
191
            width:              _butttonWidth
dogmaphobic's avatar
dogmaphobic committed
192 193 194 195 196 197 198
            enabled:            controller.requestingList || controller.downloadingLogs
            onClicked: {
                controller.cancel()
            }
        }
    }
}