mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
e49d6213ad
Since we have now destkop and mobile versions, 'qt-ui' was a very poor name choice for a folder that contains only destkop-enabled widgets. Also, move the graphicsview-common.h/cpp to subsurface-core because it doesn't depend on qgraphicsview, it merely implements all the colors that we use throughout Subsurface, and we will use colors on both desktop and mobile versions Same thing applies for metrics.h/cpp Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
91 lines
2.2 KiB
C++
91 lines
2.2 KiB
C++
/* 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"
|
|
|
|
#ifdef SUBSURFACE_MOBILE
|
|
#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;
|
|
#endif
|
|
|
|
static MainWindow *window = NULL;
|
|
|
|
void init_ui()
|
|
{
|
|
init_qt_late();
|
|
|
|
window = new MainWindow();
|
|
if (existing_filename && existing_filename[0] != '\0')
|
|
window->setTitle(MWTF_FILENAME);
|
|
else
|
|
window->setTitle(MWTF_DEFAULT);
|
|
}
|
|
|
|
void run_ui()
|
|
{
|
|
#ifdef SUBSURFACE_MOBILE
|
|
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();
|
|
#else
|
|
window->show();
|
|
#endif
|
|
qApp->exec();
|
|
}
|
|
|
|
void exit_ui()
|
|
{
|
|
delete window;
|
|
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();
|
|
}
|
|
|
|
|