oboy/src/qt/About.qml

30 lines
499 B
QML
Raw Normal View History

2019-05-08 23:09:31 +02:00
import QtQuick 2.4
import QtQuick.Window 2.0
2019-05-11 21:13:09 +02:00
import com.oboy.oboy 1.0
2019-05-08 23:09:31 +02:00
Window {
title: "About"
// A background map is 32 x 32 tiles.
// Each tile is 8 x 8 pixels.
width: 128
height: 128
maximumWidth: width
minimumWidth: width
maximumHeight: height
minimumHeight: height
2019-05-11 21:13:09 +02:00
OBoy {
id: oboy
}
2019-05-08 23:09:31 +02:00
Text {
id: name
2019-05-11 21:13:09 +02:00
text: oboy.name
}
Text {
id: version
text: oboy.version
anchors.top: name.bottom
2019-05-08 23:09:31 +02:00
}
}