Welcome to mirror list, hosted at ThFree Co, Russian Federation.

WelcomeDialogItem.qml « WelcomePages « qml « resources - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d98610d7d826b65e2dde7d459c159225f2cfa83c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// 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 UM 1.3 as UM
import Cura 1.1 as Cura


//
// This is an Item that tries to mimic a dialog for showing the welcome process.
//
Item
{
    UM.I18nCatalog { id: catalog; name: "cura" }

    id: dialog

    anchors.centerIn: parent

    width: UM.Theme.getSize("welcome_wizard_window").width
    height: UM.Theme.getSize("welcome_wizard_window").height

    property int shadowOffset: 1 * screenScaleFactor

    property alias progressBarVisible: wizardPanel.progressBarVisible
    property var model: CuraApplication.getWelcomePagesModel()

    onVisibleChanged:
    {
        if (visible)
        {
            model.resetState()
        }
    }

    WizardPanel
    {
        id: wizardPanel
        anchors.fill: parent
        model: dialog.model
    }

    // Drop shadow around the panel
    // TODO: Maybe re-implement this some other way.
    /*DropShadow
    {
        id: shadow
        radius: UM.Theme.getSize("first_run_shadow_radius").width
        anchors.fill: wizardPanel
        source: wizardPanel
        horizontalOffset: shadowOffset
        verticalOffset: shadowOffset
        color: UM.Theme.getColor("first_run_shadow")
        transparentBorder: true
    }*/

    // Close this dialog when there's no more page to show
    Connections
    {
        target: model
        function onAllFinished() { dialog.visible = false }
    }
}