Очень давно писал на Qt и начал знакомиться с QML, сейчас снова начал, но многие моменты не понимаю.
Не могу найти решение нескольких вопросов, поэтому прошу помощи.
1) почему пишет "qrc:/main.qml:294: ReferenceError: folderModel is not defined". Попытка обратиться к элементу с указанным ID происходит из FileDialog, который не имеет родителя, а элемент с указанным ID имеет много родителей. Таких моментов много, не могу понять, как обращаться к таким элементов и какая здесь преграда.
2) Есть TableView, в него необходимо добавить список файлов из папки (выбранной с помощью FileDialog). Причем необходимо получить сначала список файлов, а затем помимо информации, которую предоставляет FolderListModel получить ещё и расширение картинки (если это картинка) и ещё в один столбец произвольную строку.
Никак не пойму, как это сделать и через какие прослойки.
Собственно как вообще можно в JS в Qt получить список файлов и совершить с ним какие-либо манипуляции, а затем добавить строки в таблицу? Во всех примерах как-то совсем непрозрачно строится модель и автоматом данные отображаются. (для таблицы даже делегата не нужно указывать, судя по примерам).
Вот мой ужасный код:
import QtQuick 2.4
import QtQuick.Controls 1.3
import QtQuick.Window 2.2
import QtQuick.Dialogs 1.2
import Qt.labs.folderlistmodel 2.1
import QtQuick.Layouts 1.1
ApplicationWindow {
title: qsTr("Сортировка изображений по категориям/папкам")
width: 640
height: 480
visible: true
menuBar: MenuBar {
Menu {
title: qsTr("&File")
MenuItem {
text: qsTr("&Open")
onTriggered: fileDialog.open();
}
MenuItem {
text: qsTr("E&xit")
onTriggered: Qt.quit();
}
}
}
MainForm {
anchors.fill: parent
id: mainForm
TabView {
anchors.fill: parent
id: tabView
Tab {
title: "Images sort"
id: tabImageSort
SplitView {
anchors.fill: parent
orientation: Qt.Horizontal
id: splitView
Button {
text: "Add row"
x:20
y:130
onClicked: {
}
}
TableView {
id: tableView
frameVisible: false
sortIndicatorVisible: true
Layout.minimumWidth: 400
Layout.minimumHeight: 240
Layout.preferredWidth: 600
Layout.preferredHeight: 400
TableViewColumn {
id: idColumn
title: "ID"
role: "fileid"
movable: false
resizable: true
}
TableViewColumn {
id: nameColumn
title: "Name"
role: "filename"
movable: false
resizable: true
width: tableView.viewport.width / 3
}
TableViewColumn {
id: sizeColumn
title: "Size"
role: "filesize"
movable: false
resizable: true
}
TableViewColumn {
id: typeColumn
title: "Type"
role: "fileextension"
movable: false
resizable: true
}
TableViewColumn {
id: heightColumn
title: "Height"
role: "imageheight"
movable: false
resizable: true
}
TableViewColumn {
id: widthColumn
title: "Width"
role: "imagewidth"
movable: false
resizable: true
}
TableViewColumn {
id: catColumn
title: "Category"
role: "filecategory"
movable: false
resizable: true
}
FolderListModel {
id: folderModel
nameFilters: ["*.*"]
}
itemDelegate: Item {
Text {
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter
renderType: Text.NativeRendering
text: styleData.value
}
}
model: folderModel
}
Rectangle {
id: imageFrame
Layout.minimumWidth: 200
Layout.minimumHeight: 200
}
ListView {
id: categoryList
Layout.minimumWidth: 200
Layout.minimumHeight: 200
}
}
}
Tab {
title: "Folder select Settings"
ScrollView {
id: scrollView
anchors {
left: parent.left
right: parent.right
top: parent.top
bottom: bottomBar.top
leftMargin: 12
}
ColumnLayout {
spacing: 8
Item { Layout.preferredHeight: 4 }
Label {
font.bold: true
text: "File dialog properties:"
}
CheckBox {
id: fileDialogModal
text: "Modal"
checked: true
Binding on checked { value: fileDialog.modality != Qt.NonModal }
}
CheckBox {
id: fileDialogSelectFolder
text: "Select Folder"
Binding on checked { value: fileDialog.selectFolder }
}
CheckBox {
id: fileDialogSelectExisting
text: "Select Existing Files"
checked: true
Binding on checked { value: fileDialog.selectExisting }
}
CheckBox {
id: fileDialogSelectMultiple
text: "Select Multiple Files"
Binding on checked { value: fileDialog.selectMultiple }
}
CheckBox {
id: fileDialogOpenFiles
text: "Open Files After Accepting"
}
CheckBox {
id: fileDialogSidebarVisible
text: "Show Sidebar"
checked: fileDialog.sidebarVisible
Binding on checked { value: fileDialog.sidebarVisible }
}
CheckBox {
id: fileDialogVisible
text: "Visible"
Binding on checked { value: fileDialog.visible }
}
Label {
text: "<b>current view folder:</b> " + fileDialog.folder
}
Label {
text: "<b>name filters:</b> {" + fileDialog.nameFilters + "}"
}
Label {
text: "<b>current filter:</b>" + fileDialog.selectedNameFilter
}
Label {
text: "<b>chosen files:</b> " + fileDialog.fileUrls
}
Label {
text: "<b>chosen single path:</b> " + fileDialog.fileUrl
}
}
}
}
}
FileDialog {
id: fileDialog
nameFilters: [ "Image files (*.png *.jpg)", "All files (*)" ]
selectedNameFilter: "All files (*)"
onAccepted: {
folderModel.folder = fileUrl + "/"
console.log("Accepted: " + fileUrls)
for (var i = 0; i < fileUrls.length; ++i)
Qt.openUrlExternally(fileUrls[i])
}
onRejected: { console.log("Rejected") }
}
}
MessageDialog {
id: messageDialog
title: qsTr("May I have your attention, please?")
function show(caption) {
messageDialog.text = caption;
messageDialog.open();
}
}
}