Add skeleton for bg maps window

This commit is contained in:
Fabien Freling 2016-04-18 23:06:17 +02:00
parent 161f5681ee
commit 5b9d0de26f
4 changed files with 62 additions and 1 deletions

View file

@ -0,0 +1,33 @@
import QtQuick 2.4
Item {
width: 400
height: 400
Grid {
id: grid1
x: 0
y: 0
width: 256
height: 256
rows: 32
columns: 32
Rectangle {
id: rectangle1
width: 200
height: 200
gradient: Gradient {
GradientStop {
position: 0
color: "#ffffff"
}
GradientStop {
position: 1
color: "#000000"
}
}
}
}
}