summaryrefslogtreecommitdiffstats
path: root/util/qt3d/assetviewer/qml/HelpOverlay.qml
diff options
context:
space:
mode:
Diffstat (limited to 'util/qt3d/assetviewer/qml/HelpOverlay.qml')
-rw-r--r--util/qt3d/assetviewer/qml/HelpOverlay.qml56
1 files changed, 0 insertions, 56 deletions
diff --git a/util/qt3d/assetviewer/qml/HelpOverlay.qml b/util/qt3d/assetviewer/qml/HelpOverlay.qml
deleted file mode 100644
index 7b233e6f9..000000000
--- a/util/qt3d/assetviewer/qml/HelpOverlay.qml
+++ /dev/null
@@ -1,56 +0,0 @@
-import QtQuick 1.0
-import Qt3D 1.0
-import AssetViewer 1.0
-
-Rectangle {
- anchors.fill: parent
- color: "#00000000"
-
- Rectangle {
- id: helpScreen
- width: parent.width/2
- height: parent.height/2
- anchors.horizontalCenter: parent.horizontalCenter
- anchors.verticalCenter: parent.verticalCenter
-
- border.width: 4
- radius: 4
- color: "lightyellow"
-
- Text {
- id: header
- font { pixelSize: 32; italic: true }
- text: "3D Asset Viewer Help"
- anchors.top: parent.top
- anchors.topMargin: 16
- anchors.horizontalCenter: parent.horizontalCenter
- }
- Text {
- anchors.top: header.bottom
- anchors.topMargin: 16
- anchors.left: parent.left
- anchors.leftMargin: 16
- anchors.right: parent.right
- anchors.rightMargin: 16
- textFormat: Text.RichText
- wrapMode: Text.WordWrap
- text: "Altering model parameters with the mouse:" +
- "<ul><li>Clicking on one of the panes with the <b>Left Mouse Button</b> and dragging will translate the position.</li>" +
- "<li>Clicking on one of the panes with the <b>Right Mouse Button</b> and dragging will rotate the position.</li>" +
- "<li>Clicking on one of the panes with the <b>Middle Mouse Button</b> and dragging will resize the model."
- }
-
- Text {
- anchors.bottom: parent.bottom
- anchors.bottomMargin: 16
- anchors.horizontalCenter: parent.horizontalCenter
- text: "[ Click to Close ]"
- }
- }
- MouseArea {
- anchors.fill: parent
- acceptedButtons: Qt.LeftButton | Qt.RightButton | Qt.MiddleButton
- onClicked: parent.visible = false
- }
-}
-