diff options
author | Grace Karanja <gracie.karanja89@gmail.com> | 2015-06-04 13:36:36 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-06-20 14:24:25 -0700 |
commit | 315a245868683819031bdefc2e5c8f117b62028d (patch) | |
tree | 0a76fe2f942e2b17c65d7a5dd363fbe145a79505 /qt-mobile | |
parent | e0a25289db50390e92723d6e2298d10f2270ca8a (diff) | |
download | subsurface-315a245868683819031bdefc2e5c8f117b62028d.tar.gz |
Link QMLManager to the main.qml file
Add a link between the C++ and QML parts of the app using the
qmlRegisterType function.
[Dirk Hohndel: changed the name to org.subsurfacedivelog.mobile]
Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r-- | qt-mobile/main.qml | 9 | ||||
-rw-r--r-- | qt-mobile/qmlmanager.cpp | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml index a98fb14d6..c6ee4bb09 100644 --- a/qt-mobile/main.qml +++ b/qt-mobile/main.qml @@ -2,6 +2,7 @@ import QtQuick 2.3 import QtQuick.Controls 1.2 import QtQuick.Window 2.2 import QtQuick.Dialogs 1.2 +import org.subsurfacedivelog.mobile 1.0 ApplicationWindow { title: qsTr("Subsurface") @@ -12,6 +13,14 @@ ApplicationWindow { id: fileOpen selectExisting: true selectMultiple: true + + onAccepted: { + manager.setFilename(fileUrl) + } + } + + QMLManager { + id: manager } menuBar: MenuBar { diff --git a/qt-mobile/qmlmanager.cpp b/qt-mobile/qmlmanager.cpp index 2de94e82d..6a770b256 100644 --- a/qt-mobile/qmlmanager.cpp +++ b/qt-mobile/qmlmanager.cpp @@ -1,5 +1,5 @@ #include "qmlmanager.h" - +#include <QUrl> QMLManager::QMLManager() { |