QtDeployer/source/QML/ResultPage.qml

66 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
header: TopBar {
text: "Result"
ToolButton {
text: "➔"
rotation: 180
font.pointSize: largeFont
anchors.right: parent.right
onClicked: swipeview.currentIndex = 0
anchors.verticalCenter: parent.verticalCenter
}
}
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
title: "Qt Libraries"
model: CppManager.qtLibraries
}
ExtendableView {
checkable: false
title: "Non-Qt Libraries"
model: CppManager.cppLibraries
}
ExtendableView {
checkable: false
title: "Unknown Libraries"
model: CppManager.notFoundLibs
}
ExtendableView {
checkable: false
title: "Qml Imports"
model: QmlManager.foundImports
}
ExtendableView {
checkable: false
title: "Failed Qml Imports"
model: QmlManager.notFoundImports
}
ExtendableView {
checkable: true
title: "Copied Paths"
model: OutputManager.pathsToCopy
}
}
2018-05-07 19:33:05 +03:00
}
2018-03-12 11:43:03 +03:30
}