diff --git a/ScreenPlay/Resources.qrc b/ScreenPlay/Resources.qrc index 0b392c45..13b39dcc 100644 --- a/ScreenPlay/Resources.qrc +++ b/ScreenPlay/Resources.qrc @@ -121,5 +121,7 @@ translations/ScreenPlay_de.qm translations/ScreenPlay_en.qm qml/Create/Wizards/CreateWallpaper/Page_0.qml + qml/Create/Wizards/CreateWallpaper/Page_1.qml + qml/Create/Wizards/CreateWallpaper/Page_2.qml diff --git a/ScreenPlay/qml/Create/Wizards/CreateWallpaper/CreateWallpaperWizard.qml b/ScreenPlay/qml/Create/Wizards/CreateWallpaper/CreateWallpaperWizard.qml index 43f153ba..26a22423 100644 --- a/ScreenPlay/qml/Create/Wizards/CreateWallpaper/CreateWallpaperWizard.qml +++ b/ScreenPlay/qml/Create/Wizards/CreateWallpaper/CreateWallpaperWizard.qml @@ -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 - } } } diff --git a/ScreenPlay/qml/Create/Wizards/CreateWallpaper/Page_0.qml b/ScreenPlay/qml/Create/Wizards/CreateWallpaper/Page_0.qml index dd50096c..6a4f2c74 100644 --- a/ScreenPlay/qml/Create/Wizards/CreateWallpaper/Page_0.qml +++ b/ScreenPlay/qml/Create/Wizards/CreateWallpaper/Page_0.qml @@ -1,4 +1,4 @@ -import QtQuick 2.0 +import QtQuick 2.9 import QtQuick.Controls 2.3 import QtGraphicalEffects 1.0 diff --git a/ScreenPlay/qml/Create/Wizards/CreateWallpaper/Page_1.qml b/ScreenPlay/qml/Create/Wizards/CreateWallpaper/Page_1.qml new file mode 100644 index 00000000..7eeecb8e --- /dev/null +++ b/ScreenPlay/qml/Create/Wizards/CreateWallpaper/Page_1.qml @@ -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 + } + } +} diff --git a/ScreenPlay/qml/Create/Wizards/CreateWallpaper/Page_2.qml b/ScreenPlay/qml/Create/Wizards/CreateWallpaper/Page_2.qml new file mode 100644 index 00000000..2859ccad --- /dev/null +++ b/ScreenPlay/qml/Create/Wizards/CreateWallpaper/Page_2.qml @@ -0,0 +1,5 @@ +import QtQuick 2.9 + +Item { + +}