initial commit

This commit is contained in:
Jeena 2014-11-11 23:59:26 +01:00
parent 3ff4969946
commit da9216ce09
12 changed files with 551 additions and 0 deletions

15
main.qml Normal file
View file

@ -0,0 +1,15 @@
import QtQuick 2.3
import QtQuick.Controls 1.2
ApplicationWindow {
id: window
visible: true
width: 360
height: 360
menuBar: TheMenuBar {}
Content {
anchors.fill: parent
}
}