oboy/src/qt/About.qml

30 lines
539 B
QML

import QtQuick 2.4
import QtQuick.Window 2.0
import com.oboy.oboy 1.0
Window {
title: "About"
width: 256
height: 128
maximumWidth: width
minimumWidth: width
maximumHeight: height
minimumHeight: height
OBoy {
id: oboy
}
Text {
id: name
text: oboy.name
anchors.horizontalCenter: parent.horizontalCenter
}
Text {
id: version
text: oboy.version
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: name.bottom
}
}