mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
Fix merge conflicts
This commit is contained in:
commit
af9f9fc857
5 changed files with 100 additions and 106 deletions
69
resources/qml/WelcomePages/WizardPanel.qml
Normal file
69
resources/qml/WelcomePages/WizardPanel.qml
Normal file
|
@ -0,0 +1,69 @@
|
|||
// Copyright (c) 2019 Ultimaker B.V.
|
||||
// Cura is released under the terms of the LGPLv3 or higher.
|
||||
|
||||
import QtQuick 2.10
|
||||
import QtQuick.Controls 2.3
|
||||
|
||||
import UM 1.3 as UM
|
||||
import Cura 1.1 as Cura
|
||||
|
||||
|
||||
//
|
||||
// This item is a wizard panel that contains a progress bar at the top and a content area that's beneath the progress
|
||||
// bar.
|
||||
//
|
||||
Item
|
||||
{
|
||||
id: base
|
||||
|
||||
clip: true
|
||||
|
||||
property var currentItem: (model == null) ? null : model.getItem(model.currentPageIndex)
|
||||
property var model: null
|
||||
|
||||
// Convenience properties
|
||||
property var progressValue: model == null ? 0 : model.currentProgress
|
||||
property string pageUrl: currentItem == null ? "" : currentItem.page_url
|
||||
|
||||
signal showNextPage()
|
||||
signal showPreviousPage()
|
||||
signal goToPage(string page_id) // Go to a specific page by the given page_id.
|
||||
|
||||
// Call the corresponding functions in the model
|
||||
onShowNextPage: model.goToNextPage()
|
||||
onShowPreviousPage: model.goToPreviousPage()
|
||||
onGoToPage: model.goToPage(page_id)
|
||||
|
||||
Rectangle // Panel background
|
||||
{
|
||||
id: panelBackground
|
||||
anchors.fill: parent
|
||||
radius: UM.Theme.getSize("default_radius").width
|
||||
|
||||
Cura.ProgressBar
|
||||
{
|
||||
id: progressBar
|
||||
anchors.top: parent.top
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
|
||||
height: UM.Theme.getSize("progressbar").height
|
||||
|
||||
value: base.progressValue
|
||||
}
|
||||
|
||||
Loader
|
||||
{
|
||||
id: contentLoader
|
||||
anchors
|
||||
{
|
||||
margins: UM.Theme.getSize("default_margin").width
|
||||
top: progressBar.bottom
|
||||
bottom: parent.bottom
|
||||
left: parent.left
|
||||
right: parent.right
|
||||
}
|
||||
source: base.pageUrl
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue