Add empty QML app

This commit is contained in:
Fabien Freling 2016-03-06 21:33:37 +01:00
parent b4c81fa3f9
commit 161f5681ee
7 changed files with 121 additions and 0 deletions

23
qt/MainForm.ui.qml Normal file
View file

@ -0,0 +1,23 @@
import QtQuick 2.5
import QtQuick.Controls 1.4
import QtQuick.Layouts 1.2
Item {
property alias button1: button1
property alias button2: button2
RowLayout {
anchors.centerIn: parent
Button {
id: button1
text: qsTr("Open ROM...")
}
Button {
id: button2
text: qsTr("Press Me 2")
}
}
}