Cura/resources/qml/WelcomePages/WelcomeDialog.qml
Jaime van Kessel 894a09b654 The welcome dialog is now a rectangle instead of a dialog
The whole window approach was just causing to much cross platform issues, so
I converted it into a rectangle and put a mouseArea that eats all the events in the
greyOut background

CURA-6057
2019-03-29 11:33:49 +01:00

65 lines
1.3 KiB
QML

// 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 QtQuick.Window 2.2
import QtGraphicalEffects 1.0 // For the DropShadow
import UM 1.3 as UM
import Cura 1.1 as Cura
//
// This is a no-frame dialog that shows the welcome process.
//
Item
{
UM.I18nCatalog { id: catalog; name: "cura" }
id: dialog
anchors.centerIn: parent
width: 580 * screenScaleFactor
height: 600 * screenScaleFactor
property int shadowOffset: 1 * screenScaleFactor
property var model: CuraApplication.getWelcomePagesModel()
onVisibleChanged:
{
if (visible)
{
model.resetState()
}
}
WizardPanel
{
id: stepPanel
anchors.fill: parent
model: dialog.model
}
// Drop shadow around the panel
DropShadow
{
id: shadow
radius: UM.Theme.getSize("monitor_shadow_radius").width
anchors.fill: stepPanel
source: stepPanel
horizontalOffset: shadowOffset
verticalOffset: shadowOffset
color: UM.Theme.getColor("monitor_shadow")
transparentBorder: true
}
// Close this dialog when there's no more page to show
Connections
{
target: model
onAllFinished: close()
}
}