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

DiscardOrKeepProfileChangesDialog.qml « Dialogs « qml « resources - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0579cb3c30d060ed689a3906a9315c0c4d01d022 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
//Copyright (c) 2022 Ultimaker B.V.
//Cura is released under the terms of the LGPLv3 or higher.

import QtQuick 2.1
import QtQuick.Controls 2.15

import UM 1.6 as UM
import Cura 1.6 as Cura

UM.Dialog
{
    id: base
    title: catalog.i18nc("@title:window", "Discard or Keep changes")

    onAccepted: CuraApplication.discardOrKeepProfileChangesClosed("discard")
    onRejected: CuraApplication.discardOrKeepProfileChangesClosed("keep")

    minimumWidth: UM.Theme.getSize("popup_dialog").width
    minimumHeight: UM.Theme.getSize("popup_dialog").height
    width: minimumWidth
    height: minimumHeight
    backgroundColor: UM.Theme.getColor("background_1")
    margin: UM.Theme.getSize("thick_margin").width

    property var changesModel: Cura.UserChangesModel { id: userChangesModel }

    onVisibilityChanged:
    {
        if(visible)
        {
            changesModel.forceUpdate()

            discardOrKeepProfileChangesDropDownButton.currentIndex = 0;
            for (var i = 0; i < discardOrKeepProfileChangesDropDownButton.model.count; ++i)
            {
                var code = discardOrKeepProfileChangesDropDownButton.model.get(i).code;
                if (code == UM.Preferences.getValue("cura/choice_on_profile_override"))
                {
                    discardOrKeepProfileChangesDropDownButton.currentIndex = i;
                    break;
                }
            }
        }
    }

    UM.Label
    {
        id: infoText
        text: catalog.i18nc("@text:window, %1 is a profile name", "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'.").arg(Cura.MachineManager.activeQualityDisplayNameMap["main"])
        anchors.left: parent.left
        anchors.right: parent.right
        wrapMode: Text.WordWrap

        UM.I18nCatalog
        {
            id: catalog
            name: "cura"
        }
    }

    Item
    {
        anchors.topMargin: UM.Theme.getSize("default_margin").height
        anchors.top: infoText.bottom
        anchors.bottom: parent.bottom
        anchors.left: parent.left
        anchors.right: parent.right

        Cura.TableView
        {
            id: tableView
            anchors.fill: parent

            columnHeaders: [
                catalog.i18nc("@title:column", "Profile settings"),
                Cura.MachineManager.activeQualityDisplayNameMap["main"],
                catalog.i18nc("@title:column", "Current changes")
            ]
            model: UM.TableModel
            {
                headers: ["label", "original_value", "user_value"]
                rows: userChangesModel.items
            }
            sectionRole: "category"
        }
    }

    buttonSpacing: UM.Theme.getSize("thin_margin").width

    leftButtons: [
        Cura.ComboBox
        {
            implicitHeight: UM.Theme.getSize("combobox").height
            implicitWidth: UM.Theme.getSize("combobox").width

            id: discardOrKeepProfileChangesDropDownButton
            textRole: "text"

            model: ListModel
            {
                id: discardOrKeepProfileListModel

                Component.onCompleted: {
                    append({ text: catalog.i18nc("@option:discardOrKeep", "Always ask me this"), code: "always_ask" })
                    append({ text: catalog.i18nc("@option:discardOrKeep", "Discard and never ask again"), code: "always_discard" })
                    append({ text: catalog.i18nc("@option:discardOrKeep", "Keep and never ask again"), code: "always_keep" })
                }
            }

            onActivated:
            {
                var code = model.get(index).code;
                UM.Preferences.setValue("cura/choice_on_profile_override", code);

                if (code == "always_keep") {
                    keepButton.enabled = true;
                    discardButton.enabled = false;
                }
                else if (code == "always_discard") {
                    keepButton.enabled = false;
                    discardButton.enabled = true;
                }
                else {
                    keepButton.enabled = true;
                    discardButton.enabled = true;
                }
            }
        }
    ]

    rightButtons:
    [
        Cura.PrimaryButton
        {
            id: discardButton
            text: catalog.i18nc("@action:button", "Discard changes")
            onClicked: base.accept()
        },
        Cura.SecondaryButton
        {
            id: keepButton
            text: catalog.i18nc("@action:button", "Keep changes")
            onClicked: base.reject()
        }
    ]
}