oboy/src/qt/About.qml

40 lines
777 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 {
2019-05-14 13:54:41 +02:00
id: window
2019-05-08 23:09:31 +02:00
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-14 13:54:41 +02:00
font.pointSize: 20
font.weight: Font.Bold
font.bold: false
horizontalAlignment: Text.AlignHCenter
anchors.top: parent.top
anchors.topMargin: 30
2019-05-13 14:02:02 +02:00
anchors.horizontalCenter: parent.horizontalCenter
2019-05-11 21:13:09 +02:00
}
2019-05-14 13:54:41 +02:00
2019-05-11 21:13:09 +02:00
Text {
id: version
text: oboy.version
anchors.top: name.bottom
2019-05-14 13:54:41 +02:00
anchors.topMargin: 0
anchors.horizontalCenter: parent.horizontalCenter
2019-05-08 23:09:31 +02:00
}
2019-05-14 13:54:41 +02:00
2019-05-08 23:09:31 +02:00
}