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
19 20
    property string fileExtension       // Primary file extension to search for
    property string fileExtension2: ""  // Secondary file extension to search for
21 22 23 24
    property string title
    property bool   selectExisting
    property bool   selectFolder

25 26
    property bool   _openForLoad:   true
    property real   _margins:       ScreenTools.defaultFontPixelHeight / 2
27
    property bool   _mobileDlg:     QGroundControl.corePlugin.options.useMobileFileDialog
28
    property var    _rgExtensions
29
    property string _mobileShortPath
30

31 32 33 34 35 36 37 38
    Component.onCompleted: {
        setupFileExtensions()
        _updateMobileShortPath()
    }

    onFileExtensionChanged:     setupFileExtensions()
    onFileExtension2Changed:    setupFileExtensions()
    onFolderChanged:            _updateMobileShortPath()
39

40
    function _updateMobileShortPath() {
DoinLakeFlyer's avatar
DoinLakeFlyer committed
41 42 43
        if (ScreenTools.isMobile) {
            _mobileShortPath = controller.fullFolderPathToShortMobilePath(folder);
        }
44
    }
45 46 47

    function setupFileExtensions() {
        if (fileExtension2 == "") {
48 49 50 51 52
            _rgExtensions = [ fileExtension ]
        } else {
            _rgExtensions = [ fileExtension, fileExtension2 ]
        }
    }
53 54 55

    function openForLoad() {
        _openForLoad = true
56
        if (_mobileDlg && folder.length !== 0) {
57
            mainWindow.showComponentDialog(mobileFileOpenDialog, title, mainWindow.showDialogDefaultWidth, StandardButton.Cancel)
58 59 60 61 62 63 64
        } else {
            fullFileDialog.open()
        }
    }

    function openForSave() {
        _openForLoad = false
65
        if (_mobileDlg && folder.length !== 0) {
66
            mainWindow.showComponentDialog(mobileFileSaveDialog, title, mainWindow.showDialogDefaultWidth, StandardButton.Cancel | StandardButton.Ok)
67 68 69 70 71 72 73 74 75 76 77 78 79
        } else {
            fullFileDialog.open()
        }
    }

    function close() {
        fullFileDialog.close()
    }

    signal acceptedForLoad(string file)
    signal acceptedForSave(string file)
    signal rejected

80
    QGCFileDialogController { id: controller }
81 82
    QGCPalette { id: qgcPal; colorGroupEnabled: true }

83 84 85 86
    // On Qt 5.9 android versions there is the following bug: https://bugreports.qt.io/browse/QTBUG-61424
    // This prevents FileDialog from being used. So we have a temp hack workaround for it which just no-ops
    // the FileDialog fallback mechanism on android 5.9 builds.
    HackFileDialog {
87
        id:             fullFileDialog
88
        folder:         "file:///" + _root.folder
89
        nameFilters:    _root.nameFilters ? _root.nameFilters : []
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
        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 {
109 110 111 112 113 114 115 116 117 118
            QGCFlickable {
                anchors.fill:   parent
                contentHeight:  fileOpenColumn.height

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

119 120
                    QGCLabel { text: qsTr("Path: %1").arg(_mobileShortPath) }

121
                    Repeater {
Don Gagne's avatar
Don Gagne committed
122
                        id:     fileRepeater
123
                        model:  controller.getFiles(folder, _rgExtensions)
124

125 126
                        FileButton {
                            id:             fileButton
127 128 129 130 131 132
                            anchors.left:   parent.left
                            anchors.right:  parent.right
                            text:           modelData

                            onClicked: {
                                hideDialog()
133
                                _root.acceptedForLoad(controller.fullyQualifiedFilename(folder, modelData, _rgExtensions))
134
                            }
135

136 137
                            onHamburgerClicked: {
                                highlight = true
138
                                hamburgerMenu.fileToDelete = controller.fullyQualifiedFilename(folder, modelData, _rgExtensions)
139 140
                                hamburgerMenu.popup()
                            }
141

142
                            QGCMenu {
143
                                id: hamburgerMenu
144

145 146
                                property string fileToDelete

147
                                onAboutToHide: fileButton.highlight = false
148

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

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

    Component {
        id: mobileFileSaveDialog

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

187 188 189
            QGCFlickable {
                anchors.fill:   parent
                contentHeight:  fileSaveColumn.height
190

191 192
                Column {
                    id:             fileSaveColumn
193 194
                    anchors.left:   parent.left
                    anchors.right:  parent.right
195 196 197 198 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
                    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
235 236
                        id:     fileRepeater
                        model:  controller.getFiles(folder, [ fileExtension ])
237

238
                        FileButton {
Don Gagne's avatar
Don Gagne committed
239
                            id:             fileButton
240 241 242 243 244 245
                            anchors.left:   parent.left
                            anchors.right:  parent.right
                            text:           modelData

                            onClicked: {
                                hideDialog()
246
                                _root.acceptedForSave(controller.fullyQualifiedFilename(folder, modelData, _rgExtensions))
247 248
                            }

249 250
                            onHamburgerClicked: {
                                highlight = true
251
                                hamburgerMenu.fileToDelete = controller.fullyQualifiedFilename(folder, modelData, _rgExtensions)
252 253 254
                                hamburgerMenu.popup()
                            }

255
                            QGCMenu {
256 257 258 259
                                id: hamburgerMenu

                                property string fileToDelete

Don Gagne's avatar
Don Gagne committed
260
                                onAboutToHide: fileButton.highlight = false
261

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