1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00

Add video import pages

This commit is contained in:
kelteseth 2018-09-20 15:42:33 +02:00
parent 93133380f3
commit f21f0a4962
5 changed files with 35 additions and 13 deletions

View File

@ -121,5 +121,7 @@
<file>translations/ScreenPlay_de.qm</file>
<file>translations/ScreenPlay_en.qm</file>
<file>qml/Create/Wizards/CreateWallpaper/Page_0.qml</file>
<file>qml/Create/Wizards/CreateWallpaper/Page_1.qml</file>
<file>qml/Create/Wizards/CreateWallpaper/Page_2.qml</file>
</qresource>
</RCC>

View File

@ -89,21 +89,11 @@ Item {
Page_0 {
id: firstPage
}
Rectangle {
Page_1 {
id: secondPage
Text {
id: name2
text: "secondPage"
anchors.centerIn: parent
}
}
Rectangle {
Page_2 {
id: thirdPage
Text {
id: name3
text: "thirdPage"
anchors.centerIn: parent
}
}
}

View File

@ -1,4 +1,4 @@
import QtQuick 2.0
import QtQuick 2.9
import QtQuick.Controls 2.3
import QtGraphicalEffects 1.0

View File

@ -0,0 +1,25 @@
import QtQuick 2.9
Item {
id: root
Rectangle {
id: rectangle1
color: "gray"
width: parent.width * .5
anchors {
top: parent.top
bottom: parent.bottom
left: parent.left
}
}
Rectangle {
id: rectangle
width: parent.width * .5
anchors {
top: parent.top
bottom: parent.bottom
right: parent.right
}
}
}

View File

@ -0,0 +1,5 @@
import QtQuick 2.9
Item {
}