Files
radiance/resources/qml/ImageNodeTile.qml
2018-10-14 18:21:53 -04:00

35 lines
611 B
QML

import QtQuick 2.7
import QtQuick.Layouts 1.2
import QtQuick.Controls 1.4
import QtQuick.Controls.Styles 1.4
import radiance 1.0
VideoNodeTile {
id: tile;
onVideoNodeChanged: {
}
ColumnLayout {
anchors.fill: parent;
anchors.leftMargin: 10
anchors.rightMargin: 10
anchors.bottomMargin: 5
anchors.topMargin: 5
RadianceTileTitle {
Layout.fillWidth: true;
text: videoNode ? videoNode.name : "";
}
CheckerboardPreview {
videoNode: tile.videoNode
}
}
Keys.onPressed: {
}
}