oboy/src/qt/About.qml

30 lines
539 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"
2019-05-13 14:02:02 +02:00
width: 256
2019-05-08 23:09:31 +02:00
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
2019-05-13 14:02:02 +02:00
anchors.horizontalCenter: parent.horizontalCenter
2019-05-11 21:13:09 +02:00
}
Text {
id: version
text: oboy.version
2019-05-13 14:02:02 +02:00
anchors.horizontalCenter: parent.horizontalCenter
2019-05-11 21:13:09 +02:00
anchors.top: name.bottom
2019-05-08 23:09:31 +02:00
}
}