QmlNodeEditor
ConnectionDeleteConfirmationDialog.qml
Go to the documentation of this file.
1 import QtQuick 2.15
2 import QtQuick.Controls 2.15
3 
4 Dialog {
5  parent: Overlay.overlay
6  x: Math.round((parent.width - width) / 2)
7  y: Math.round((parent.height - height) / 2)
8  modal: true
9  focus: true
10  title: "Do you really want to remove connection from node " + from.nodeId + " port " + from.portId + " to node " + to.nodeId + " port " + to.portId + "?"
11  standardButtons: Dialog.Ok | Dialog.Cancel
12 }