12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- import QtQuick 2.10
- import QtQuick.Controls 2.3
- import UM 1.3 as UM
- import Cura 1.1 as Cura
- Item
- {
- id: base
- clip: true
- property var currentItem: (model == null) ? null : model.getItem(model.currentPageIndex)
- property var model: null
-
- property var progressValue: model == null ? 0 : model.currentProgress
- property string pageUrl: currentItem == null ? "" : currentItem.page_url
- property alias progressBarVisible: progressBar.visible
- property alias backgroundColor: panelBackground.color
- signal showNextPage()
- signal showPreviousPage()
- signal goToPage(string page_id)
- signal endWizard()
-
- onShowNextPage: model.goToNextPage()
- onShowPreviousPage: model.goToPreviousPage()
- onGoToPage: model.goToPage(page_id)
- onEndWizard: model.atEnd()
- Rectangle
- {
- id: panelBackground
- anchors.fill: parent
- radius: UM.Theme.getSize("default_radius").width
- color: UM.Theme.getColor("main_background")
- UM.ProgressBar
- {
- id: progressBar
- anchors.top: parent.top
- anchors.left: parent.left
- anchors.right: parent.right
- height: visible ? UM.Theme.getSize("progressbar").height : 0
- value: base.progressValue
- }
- Loader
- {
- id: contentLoader
- anchors
- {
- margins: UM.Theme.getSize("wide_margin").width
- top: progressBar.bottom
- bottom: parent.bottom
- left: parent.left
- right: parent.right
- }
- source: base.pageUrl
- active: base.visible
- }
- }
- }
|