
| The Following 6 Users Say Thank You to Bundyo For This Useful Post: | ||
| The Following User Says Thank You to aegis For This Useful Post: | ||
| The Following User Says Thank You to seiichiro0185 For This Useful Post: | ||
What do you think, should I keep using only one folder (currently /home/nemo/Pictures/Olympus/, probably configurable in the future) or should I keep the pictures in different folders, based on the camera model? ListModel {
id: model
}
Connections {
target: bridge
onImageStatusChanged: model.setProperty(index, "status", status) // 'index' and 'status' (e.g 'Downloading' or 'Downloaded') are signal parameters
}
....
model: bridge.fileList
delegate: Item {
someProperty: modelData.downloading
otherProperty: modelData.downloaded
}
| The Following User Says Thank You to marxian For This Useful Post: | ||
ListModel {
id: model
}
Connections {
target: bridge
onImageStatusChanged: model.setProperty(index, "status", status) // 'index' and 'status' (e.g 'Downloading' or 'Downloaded') are signal parameters
}
....
model: bridge.fileList
delegate: Item {
someProperty: modelData.downloading
otherProperty: modelData.downloaded
}
I'll try the rest.
| The Following User Says Thank You to Bundyo For This Useful Post: | ||