Qt File Browser based on QML
It is easy to implement a file browser by usi开发者_运维知识库ng QFileSystemModel. But the listview UI is not pretty. So I want to implement a file browser using QML. the QML has model/view support. But how to display the filesystem tree in QML? Any clue would be appreciated.
Since Qt5.5 we have TreeView
QML component available,
main.qml
:
import QtQuick.Controls 1.4
TreeView {
anchors.fill: parent
TableViewColumn {
title: "Name"
role: "fileName"
width: 300
}
model: my_model
}
main.cpp
:
QFileSystemModel model;
model.setRootPath("/");
QQmlApplicationEngine engine;
engine.rootContext()->setContextProperty("my_model", &model);
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
I think its kind of late, but still it might help some one.
I recently created QML based filedialog for my project for Symbian using Qt Quick Components. Its implementation is here,
And here is sample application,
精彩评论