mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
Add video import pages
This commit is contained in:
parent
93133380f3
commit
f21f0a4962
@ -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>
|
||||
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import QtQuick 2.0
|
||||
import QtQuick 2.9
|
||||
import QtQuick.Controls 2.3
|
||||
import QtGraphicalEffects 1.0
|
||||
|
||||
|
25
ScreenPlay/qml/Create/Wizards/CreateWallpaper/Page_1.qml
Normal file
25
ScreenPlay/qml/Create/Wizards/CreateWallpaper/Page_1.qml
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
5
ScreenPlay/qml/Create/Wizards/CreateWallpaper/Page_2.qml
Normal file
5
ScreenPlay/qml/Create/Wizards/CreateWallpaper/Page_2.qml
Normal file
@ -0,0 +1,5 @@
|
||||
import QtQuick 2.9
|
||||
|
||||
Item {
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user