File: MachineAction.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 (19 lines) | stat: -rw-r--r-- 376 bytes parent folder | download | duplicates (5)
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()
    }
}