Changes the styling of the wizardPages

commits to #143
This commit is contained in:
Tamara Hogenhout 2015-08-13 10:49:24 +02:00
parent b14f3d98bc
commit 062df7c512
5 changed files with 254 additions and 66 deletions

View file

@ -9,8 +9,25 @@ import QtQuick.Window 2.1
import UM 1.0 as UM
ColumnLayout {
id: wizardPage
property string title
anchors.fill: parent;
property int pageWidth
property int pageHeight
SystemPalette{id: palette}
//signal openFile(string fileName)
//signal closeWizard()
width: wizardPage.pageWidth
height: wizardPage.pageHeight
Connections {
target: elementRoot
onResize: {
wizardPage.width = pageWidth
wizardPage.height = pageHeight
}
}
Label {
text: parent.title