QGCFileDialog.qml 10.3 KB
Newer Older
1 2 3 4
import QtQuick                      2.11
import QtQuick.Controls             2.4
import QtQuick.Dialogs              1.2
import QtQuick.Layouts              1.11
5 6 7 8 9 10 11 12 13 14 15 16

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

/// This control is meant to be a direct replacement for the standard Qml FileDialog control.
/// It differs for mobile builds which uses a completely custom file picker.
Item {
    id:         _root
    visible:    false

17
    property string folder              // Due to Qt bug with file url parsing this must be an absolute path
18
    property var    nameFilters:    []  // Important: Only name filters with simple wildcarding like *.foo are supported.
19 20 21 22
    property string title
    property bool   selectExisting
    property bool   selectFolder

23 24 25
    signal acceptedForLoad(string file)
    signal acceptedForSave(string file)
    signal rejected
26 27 28

    function openForLoad() {
        _openForLoad = true
29
        if (_mobileDlg && folder.length !== 0) {
30
            mainWindow.showComponentDialog(mobileFileOpenDialog, title, mainWindow.showDialogDefaultWidth, StandardButton.Cancel)
31 32 33 34 35 36 37
        } else {
            fullFileDialog.open()
        }
    }

    function openForSave() {
        _openForLoad = false
38
        if (_mobileDlg && folder.length !== 0) {
39
            mainWindow.showComponentDialog(mobileFileSaveDialog, title, mainWindow.showDialogDefaultWidth, StandardButton.Cancel | StandardButton.Ok)
40 41 42 43 44 45 46 47 48
        } else {
            fullFileDialog.open()
        }
    }

    function close() {
        fullFileDialog.close()
    }

49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
    property bool   _openForLoad:   true
    property real   _margins:       ScreenTools.defaultFontPixelHeight / 2
    property bool   _mobileDlg:     QGroundControl.corePlugin.options.useMobileFileDialog
    property var    _rgExtensions
    property string _mobileShortPath

    Component.onCompleted: {
        _setupFileExtensions()
        _updateMobileShortPath()
    }

    onFolderChanged:        _updateMobileShortPath()
    onNameFiltersChanged:   _setupFileExtensions()

    function _updateMobileShortPath() {
        if (ScreenTools.isMobile) {
            _mobileShortPath = controller.fullFolderPathToShortMobilePath(folder);
        }
    }

    function _setupFileExtensions() {
        _rgExtensions = [ ]
        for (var i=0; i<_root.nameFilters.length; i++) {
            var filter = _root.nameFilters[i]
            var regExp = /^.*\((.*)\)$/
            var result = regExp.exec(filter)
            if (result.length === 2) {
                filter = result[1]
            }
            var rgFilters = filter.split(" ")
            for (var j=0; j<rgFilters.length; j++) {
                if (!_mobileDlg || (rgFilters[j] !== "*" && rgFilters[j] !== "*.*")) {
                    _rgExtensions.push(rgFilters[j])
                }
            }
        }
    }
86

87
    QGCFileDialogController { id: controller }
88 89
    QGCPalette { id: qgcPal; colorGroupEnabled: true }

90
    FileDialog {
91
        id:             fullFileDialog
92
        folder:         "file:///" + _root.folder
93
        nameFilters:    _root.nameFilters ? _root.nameFilters : []
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
        title:          _root.title
        selectExisting: _root.selectExisting
        selectMultiple: false
        selectFolder:   _root.selectFolder

        onAccepted: {
            if (_openForLoad) {
                _root.acceptedForLoad(controller.urlToLocalFile(fileUrl))
            } else {
                _root.acceptedForSave(controller.urlToLocalFile(fileUrl))
            }
        }
        onRejected: _root.rejected()
    }

    Component {
        id: mobileFileOpenDialog

        QGCViewDialog {
113 114 115 116 117 118 119 120 121 122
            QGCFlickable {
                anchors.fill:   parent
                contentHeight:  fileOpenColumn.height

                Column {
                    id:             fileOpenColumn
                    anchors.left:   parent.left
                    anchors.right:  parent.right
                    spacing:        ScreenTools.defaultFontPixelHeight / 2

123 124
                    QGCLabel { text: qsTr("Path: %1").arg(_mobileShortPath) }

125
                    Repeater {
Don Gagne's avatar
Don Gagne committed
126
                        id:     fileRepeater
127
                        model:  controller.getFiles(folder, _rgExtensions)
128

129 130
                        FileButton {
                            id:             fileButton
131 132 133 134 135 136
                            anchors.left:   parent.left
                            anchors.right:  parent.right
                            text:           modelData

                            onClicked: {
                                hideDialog()
137
                                _root.acceptedForLoad(controller.fullyQualifiedFilename(folder, modelData))
138
                            }
139

140 141
                            onHamburgerClicked: {
                                highlight = true
142
                                hamburgerMenu.fileToDelete = controller.fullyQualifiedFilename(folder, modelData)
143 144
                                hamburgerMenu.popup()
                            }
145

146
                            QGCMenu {
147
                                id: hamburgerMenu
148

149 150
                                property string fileToDelete

151
                                onAboutToHide: fileButton.highlight = false
152

153
                                QGCMenuItem {
154
                                    text:           qsTr("Delete")
Don Gagne's avatar
Don Gagne committed
155 156 157 158
                                    onTriggered: {
                                        controller.deleteFile(hamburgerMenu.fileToDelete)
                                        fileRepeater.model = controller.getFiles(folder, _rgExtensions)
                                    }
159
                                }
160 161 162 163
                            }
                        }
                    }

164 165
                    QGCLabel {
                        text:       qsTr("No files")
Don Gagne's avatar
Don Gagne committed
166
                        visible:    fileRepeater.model.length === 0
167
                    }
168 169 170 171 172 173 174 175 176 177 178 179 180 181
                }
            }
        }
    }

    Component {
        id: mobileFileSaveDialog

        QGCViewDialog {
            function accept() {
                if (filenameTextField.text == "") {
                    return
                }
                if (!replaceMessage.visible) {
182
                    if (controller.fileExists(controller.fullyQualifiedFilename(folder, filenameTextField.text, _rgExtensions))) {
183 184 185 186
                        replaceMessage.visible = true
                        return
                    }
                }
187
                _root.acceptedForSave(controller.fullyQualifiedFilename(folder, filenameTextField.text, _rgExtensions))
188 189 190
                hideDialog()
            }

191 192 193
            QGCFlickable {
                anchors.fill:   parent
                contentHeight:  fileSaveColumn.height
194

195 196
                Column {
                    id:             fileSaveColumn
197 198
                    anchors.left:   parent.left
                    anchors.right:  parent.right
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
                    spacing:        ScreenTools.defaultFontPixelHeight / 2

                    RowLayout {
                        anchors.left:   parent.left
                        anchors.right:  parent.right
                        spacing:        ScreenTools.defaultFontPixelWidth

                        QGCLabel { text: qsTr("New file name:") }

                        QGCTextField {
                            id:                 filenameTextField
                            Layout.fillWidth:   true
                            onTextChanged:      replaceMessage.visible = false
                        }
                    }

                    QGCLabel {
                        anchors.left:   parent.left
                        anchors.right:  parent.right
                        wrapMode:       Text.WordWrap
                        text:           qsTr("File names must end with .%1 file extension. If missing it will be added.").arg(fileExtension)
                    }

                    QGCLabel {
                        id:             replaceMessage
                        anchors.left:   parent.left
                        anchors.right:  parent.right
                        wrapMode:       Text.WordWrap
                        text:           qsTr("The file %1 exists. Click Save again to replace it.").arg(filenameTextField.text)
                        visible:        false
                        color:          qgcPal.warningText
                    }

                    SectionHeader {
                        anchors.left:   parent.left
                        anchors.right:  parent.right
                        text:           qsTr("Save to existing file:")
                    }

                    Repeater {
Don Gagne's avatar
Don Gagne committed
239 240
                        id:     fileRepeater
                        model:  controller.getFiles(folder, [ fileExtension ])
241

242
                        FileButton {
Don Gagne's avatar
Don Gagne committed
243
                            id:             fileButton
244 245 246 247 248 249
                            anchors.left:   parent.left
                            anchors.right:  parent.right
                            text:           modelData

                            onClicked: {
                                hideDialog()
250
                                _root.acceptedForSave(controller.fullyQualifiedFilename(folder, modelData))
251 252
                            }

253 254
                            onHamburgerClicked: {
                                highlight = true
255
                                hamburgerMenu.fileToDelete = controller.fullyQualifiedFilename(folder, modelData)
256 257 258
                                hamburgerMenu.popup()
                            }

259
                            QGCMenu {
260 261 262 263
                                id: hamburgerMenu

                                property string fileToDelete

Don Gagne's avatar
Don Gagne committed
264
                                onAboutToHide: fileButton.highlight = false
265

266
                                QGCMenuItem {
267
                                    text:           qsTr("Delete")
Don Gagne's avatar
Don Gagne committed
268 269 270 271
                                    onTriggered: {
                                        controller.deleteFile(hamburgerMenu.fileToDelete)
                                        fileRepeater.model = controller.getFiles(folder, [ fileExtension ])
                                    }
272 273 274 275
                                }
                            }
                        }
                    }
276 277 278 279 280
                }
            }
        }
    }
}