summaryrefslogtreecommitdiffstats
path: root/DOCS/client_api_examples/qml_direct/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'DOCS/client_api_examples/qml_direct/main.qml')
-rw-r--r--DOCS/client_api_examples/qml_direct/main.qml49
1 files changed, 0 insertions, 49 deletions
diff --git a/DOCS/client_api_examples/qml_direct/main.qml b/DOCS/client_api_examples/qml_direct/main.qml
deleted file mode 100644
index 92be9bc405..0000000000
--- a/DOCS/client_api_examples/qml_direct/main.qml
+++ /dev/null
@@ -1,49 +0,0 @@
-import QtQuick 2.0
-import QtQuick.Controls 1.0
-
-import mpvtest 1.0
-
-Item {
- width: 1280
- height: 720
-
- MpvObject {
- id: renderer
-
- // This object isn't real and not visible; it just renders into the
- // background of the containing Window.
- width: 0
- height: 0
- }
-
- MouseArea {
- anchors.fill: parent
- onClicked: renderer.command(["loadfile", "../../../test.mkv"])
- }
-
- Rectangle {
- id: labelFrame
- anchors.margins: -50
- radius: 5
- color: "white"
- border.color: "black"
- opacity: 0.8
- anchors.fill: box
- }
-
- Row {
- id: box
- anchors.bottom: parent.bottom
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.margins: 100
-
- Text {
- anchors.margins: 10
- wrapMode: Text.WordWrap
- text: "QtQuick and mpv are both rendering stuff.\n
- In this example, mpv is always in the background.\n
- Click to load ../../../test.mkv"
- }
- }
-}