summaryrefslogtreecommitdiffstats
path: root/basicsuite/Media Player/Intro.qml
diff options
context:
space:
mode:
Diffstat (limited to 'basicsuite/Media Player/Intro.qml')
-rw-r--r--basicsuite/Media Player/Intro.qml48
1 files changed, 0 insertions, 48 deletions
diff --git a/basicsuite/Media Player/Intro.qml b/basicsuite/Media Player/Intro.qml
deleted file mode 100644
index a5dbb2a..0000000
--- a/basicsuite/Media Player/Intro.qml
+++ /dev/null
@@ -1,48 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- id: root
- color: "#111111"
-
-// Image {
-// anchors.fill: parent
-// source: "images/gradient.png"
-// }
-
- Image {
- id: logo
- anchors.centerIn: root
- anchors.verticalCenterOffset: -60
- source: "images/qt-logo.png"
- opacity: 0.5
-
- }
-// Rectangle {
-// id: button
-// opacity: mouse.containsMouse ? 1 : 0
-// Behavior on opacity {NumberAnimation{duration: 100}}
-// color: mouse.pressed ? "#11000000" : "#11ffffff"
-// anchors.top: logo.bottom
-// anchors.horizontalCenter: parent.horizontalCenter
-// border.color: "#33ffffff"
-// width: text.width + 40
-// height: text.height + 4
-// antialiasing: true
-// radius: 4
-// MouseArea {
-// id: mouse
-// anchors.fill: parent
-// hoverEnabled: true
-// onClicked: applicationWindow.openVideo()
-// }
-// }
-
-// Text {
-// id: text
-// color: "#44ffffff"
-// text: "Open File"
-// font.bold: true
-// font.pixelSize: 18
-// anchors.centerIn: button
-// }
-}