Add skeleton for bg maps window
This commit is contained in:
parent
161f5681ee
commit
5b9d0de26f
4 changed files with 62 additions and 1 deletions
33
qt/BackgroundMapForm.ui.qml
Normal file
33
qt/BackgroundMapForm.ui.qml
Normal 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue