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

MachineAction.qml « qml « resources - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c43f9f96dba1754d643ae4935ad0220b26ed459 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick 2.2

Item
{
    id: contentItem

    // Point to the dialog containing the displayItem
    property var dialog

    // Connect the finished property change to completed signal.
    property var finished: manager.finished
    onFinishedChanged: if(manager.finished) {completed()}
    signal completed()

    function reset()
    {
        manager.reset()
    }
}