aboutsummaryrefslogtreecommitdiffstats
path: root/subsurface-android-helper.cpp
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2015-09-03 14:49:59 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-10-30 10:36:49 -0700
commit45c97640739198cf9a9cc5c42e81fb9811702b46 (patch)
tree4390fe4387d073ac7802bb6bff3bc0bbe69a836d /subsurface-android-helper.cpp
parente49d6213ad129284a45d53c3fcdc03249e84efe2 (diff)
downloadsubsurface-45c97640739198cf9a9cc5c42e81fb9811702b46.tar.gz
main.cpp -> {android-main, desktop-main}
This is needed to compile both in a single call to make. Also it will help removing some of the mistakes in the current android version: it always created the mainwindow, even without using it for anything, so tons of memory will be freed now for the android version, making it snappier and smoother. This is a necessary move so we don't need to #ifdef all over the place for the two different versions, and imo the changes needed to keep both versions will not be that huge if we keep things in subsurface-core sane. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-android-helper.cpp')
-rw-r--r--subsurface-android-helper.cpp74
1 files changed, 74 insertions, 0 deletions
diff --git a/subsurface-android-helper.cpp b/subsurface-android-helper.cpp
new file mode 100644
index 000000000..7b5d5df56
--- /dev/null
+++ b/subsurface-android-helper.cpp
@@ -0,0 +1,74 @@
+/* qt-gui.cpp */
+/* Qt UI implementation */
+#include "dive.h"
+#include "display.h"
+#include "desktop-widgets/mainwindow.h"
+#include "helpers.h"
+
+#include <QApplication>
+#include <QDesktopWidget>
+#include <QNetworkProxy>
+#include <QLibraryInfo>
+
+#include "qt-gui.h"
+
+#include <QQuickWindow>
+#include <QQmlApplicationEngine>
+#include <QQmlContext>
+#include <QSortFilterProxyModel>
+#include "qt-mobile/qmlmanager.h"
+#include "qt-models/divelistmodel.h"
+#include "qt-mobile/qmlprofile.h"
+
+QObject *qqWindowObject = NULL;
+
+void init_ui()
+{
+ init_qt_late();
+}
+
+void run_ui()
+{
+ window->hide();
+ qmlRegisterType<QMLManager>("org.subsurfacedivelog.mobile", 1, 0, "QMLManager");
+ qmlRegisterType<QMLProfile>("org.subsurfacedivelog.mobile", 1, 0, "QMLProfile");
+ QQmlApplicationEngine engine;
+ DiveListModel diveListModel;
+ QSortFilterProxyModel *sortModel = new QSortFilterProxyModel(0);
+ sortModel->setSourceModel(&diveListModel);
+ sortModel->setDynamicSortFilter(true);
+ sortModel->setSortRole(DiveListModel::DiveDateRole);
+ sortModel->sort(0, Qt::DescendingOrder);
+ QQmlContext *ctxt = engine.rootContext();
+ ctxt->setContextProperty("diveModel", sortModel);
+ engine.load(QUrl(QStringLiteral("qrc:///qml/main.qml")));
+ qqWindowObject = engine.rootObjects().value(0);
+ if (!qqWindowObject) {
+ fprintf(stderr, "can't create window object\n");
+ exit(1);
+ }
+ QQuickWindow *qml_window = qobject_cast<QQuickWindow *>(qqWindowObject);
+ qml_window->setIcon(QIcon(":/subsurface-mobile-icon"));
+ qqWindowObject->setProperty("messageText", QVariant("Subsurface mobile startup"));
+#if !defined(Q_OS_ANDROID)
+ qml_window->setHeight(1200);
+ qml_window->setWidth(800);
+#endif
+ qml_window->show();
+ qApp->exec();
+}
+
+void exit_ui()
+{
+ delete qApp;
+ free((void *)existing_filename);
+ free((void *)default_dive_computer_vendor);
+ free((void *)default_dive_computer_product);
+ free((void *)default_dive_computer_device);
+}
+
+double get_screen_dpi()
+{
+ QDesktopWidget *mydesk = qApp->desktop();
+ return mydesk->physicalDpiX();
+}