mirror of
https://github.com/zbanks/radiance.git
synced 2026-05-04 21:56:12 +02:00
35 lines
611 B
QML
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: {
|
|
|
|
}
|
|
}
|