add first qml files

This commit is contained in:
Felix Hammer
2015-01-06 00:43:58 +01:00
parent fa4df857e4
commit 6a8c159450
10 changed files with 215 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#include <QQmlApplicationEngine>
#include "startview.h"
startView::startView()
{
qDebug("startViewKonstruktor");
myEngine = new QQmlApplicationEngine();
}
startView::~startView()
{
}
void startView::show()
{
qDebug("show mal bitte");
myEngine->load(QUrl(QStringLiteral("qrc:/main.qml")));
}