File: SettingPickDialog.qml

package info (click to toggle)
cura 5.0.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 122,920 kB
  • sloc: python: 44,572; sh: 81; xml: 32; makefile: 16
file content (139 lines) | stat: -rw-r--r-- 3,908 bytes parent folder | download | duplicates (2)
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
//Copyright (c) 2022 Ultimaker B.V.
//Cura is released under the terms of the LGPLv3 or higher.

import QtQuick 2.2
import QtQuick.Controls 2.2

import UM 1.5 as UM
import Cura 1.0 as Cura
import ".."

UM.Dialog
{
    id: settingPickDialog

    margin: UM.Theme.getSize("default_margin").width

    title: catalog.i18nc("@title:window", "Select Settings to Customize for this model")
    width: UM.Theme.getSize("small_popup_dialog").width
    backgroundColor: UM.Theme.getColor("background_1")

    property var additional_excluded_settings

    onVisibilityChanged:
    {
        // force updating the model to sync it with addedSettingsModel
        if (visible)
        {
            listview.model.forceUpdate()
            updateFilter()
        }
    }

    function updateFilter()
    {
        var new_filter = {}
        new_filter["settable_per_mesh"] = true
        // Don't filter on "settable_per_meshgroup" any more when `printSequencePropertyProvider.properties.value`
        //   is set to "one_at_a_time", because the current backend architecture isn't ready for that.

        if (filterInput.text != "")
        {
            new_filter["i18n_label"] = "*" + filterInput.text
        }

        listview.model.filter = new_filter
    }

    Cura.TextField
    {
        id: filterInput
        selectByMouse: true

        anchors
        {
            top: parent.top
            left: parent.left
            right: toggleShowAll.left
            rightMargin: UM.Theme.getSize("default_margin").width
        }

        placeholderText: catalog.i18nc("@label:textbox", "Filter...")

        onTextChanged: settingPickDialog.updateFilter()
    }

    UM.CheckBox
    {
        id: toggleShowAll
        anchors
        {
            top: parent.top
            right: parent.right
            verticalCenter: filterInput.verticalCenter
        }
        text: catalog.i18nc("@label:checkbox", "Show all")
    }

    ListView
    {
        id: listview
        anchors
        {
            top: filterInput.bottom
            topMargin: UM.Theme.getSize("default_margin").height
            left: parent.left
            right: parent.right
            bottom: parent.bottom
        }

        ScrollBar.vertical: UM.ScrollBar { id: scrollBar }
        clip: true

        model: UM.SettingDefinitionsModel
        {
            id: definitionsModel
            containerId: Cura.MachineManager.activeMachine != null ? Cura.MachineManager.activeMachine.definition.id: ""
            visibilityHandler: UM.SettingPreferenceVisibilityHandler {}
            expanded: [ "*" ]
            exclude:
            {
                var excluded_settings = [ "machine_settings", "command_line_settings", "support_mesh", "anti_overhang_mesh", "cutting_mesh", "infill_mesh" ]
                excluded_settings = excluded_settings.concat(settingPickDialog.additional_excluded_settings)
                return excluded_settings
            }
            showAll: toggleShowAll.checked || filterInput.text !== ""
        }
        delegate: Loader
        {
            id: loader

            width: listview.width - scrollBar.width
            height: model.type != undefined ? UM.Theme.getSize("section").height : 0

            property var definition: model
            property var settingDefinitionsModel: definitionsModel

            asynchronous: true
            source:
            {
                switch(model.type)
                {
                    case "category":
                        return "PerObjectCategory.qml"
                    default:
                        return "PerObjectItem.qml"
                }
            }
        }
        Component.onCompleted: settingPickDialog.updateFilter()
    }

    rightButtons: [
        Cura.TertiaryButton
        {
            text: catalog.i18nc("@action:button", "Close")
            onClicked: reject()
        }
    ]
}