QtDeployer/source/QML/ResultPage.qml

58 lines
1.1 KiB
QML
Raw Normal View History

2018-03-12 11:43:03 +03:30
import QtQuick 2.7
import QtQuick.Controls 2.0
2018-05-07 19:33:05 +03:00
import QtQuick.Controls.Material 2.0
import QtQuick.Layouts 1.3
2018-03-12 11:43:03 +03:30
Page {
clip: true
2018-05-10 16:17:45 +03:00
header: Header {
message: qsTr("Result")
}
2018-03-12 11:43:03 +03:30
ListView {
id: listview
2018-05-10 12:36:59 +03:00
anchors.fill: parent
2018-03-12 11:43:03 +03:30
ScrollBar.vertical: ScrollBar {}
model: VisualItemModel {
ExtendableView {
checkable: false
2018-05-10 14:08:58 +03:00
title: qsTr("Qt Libraries")
2018-03-12 11:43:03 +03:30
model: CppManager.qtLibraries
}
ExtendableView {
checkable: false
2018-05-10 14:08:58 +03:00
title: qsTr("Non-Qt Libraries")
2018-03-12 11:43:03 +03:30
model: CppManager.cppLibraries
}
ExtendableView {
checkable: false
2018-05-10 14:08:58 +03:00
title: qsTr("Unknown Libraries")
2018-03-12 11:43:03 +03:30
model: CppManager.notFoundLibs
}
ExtendableView {
checkable: false
2018-05-10 14:08:58 +03:00
title: qsTr("Qml Imports")
2018-03-12 11:43:03 +03:30
model: QmlManager.foundImports
}
ExtendableView {
checkable: false
2018-05-10 14:08:58 +03:00
title: qsTr("Failed Qml Imports")
2018-03-12 11:43:03 +03:30
model: QmlManager.notFoundImports
}
ExtendableView {
checkable: true
2018-05-10 14:08:58 +03:00
title: qsTr("Copied Paths")
2018-03-12 11:43:03 +03:30
model: OutputManager.pathsToCopy
}
}
2018-05-07 19:33:05 +03:00
}
2018-03-12 11:43:03 +03:30
}