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

ToolboxProgressButton.qml « components « qml « resources « Toolbox « plugins - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40d6c1af47b5519a26648b877e6c6386936aa86c (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
// Copyright (c) 2019 Ultimaker B.V.
// Toolbox is released under the terms of the LGPLv3 or higher.

import QtQuick 2.10
import QtQuick.Controls 2.3

import UM 1.1 as UM
import Cura 1.0 as Cura


Cura.PrimaryButton
{
    id: button

    property var active: false
    property var complete: false

    property var readyLabel: catalog.i18nc("@action:button", "Install")
    property var activeLabel: catalog.i18nc("@action:button", "Cancel")
    property var completeLabel: catalog.i18nc("@action:button", "Installed")

    signal readyAction() // Action when button is ready and clicked (likely install)
    signal activeAction() // Action when button is active and clicked (likely cancel)
    signal completeAction() // Action when button is complete and clicked (likely go to installed)

    width: UM.Theme.getSize("toolbox_action_button").width
    height: UM.Theme.getSize("toolbox_action_button").height
    fixedWidthMode: true
    text:
    {
        if (complete)
        {
            return completeLabel
        }
        else if (active)
        {
            return activeLabel
        }
        else
        {
            return readyLabel
        }
    }
    onClicked:
    {
        if (complete)
        {
            completeAction()
        }
        else if (active)
        {
            activeAction()
        }
        else
        {
            readyAction()
        }
    }
    busy: active
}