mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
4ac5b9c965
The MainWindow::setTitle() function was passed an enum, which depended on whether existing_file is set or not. The check can be (and was!) done directly in setTitle(). Therefore, remove the whole enum. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
58 lines
1,020 B
C++
58 lines
1,020 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
/* qt-gui.cpp */
|
|
/* Qt UI implementation */
|
|
#include "core/dive.h"
|
|
#include "core/display.h"
|
|
#include "desktop-widgets/mainwindow.h"
|
|
#include "core/helpers.h"
|
|
#include "core/pluginmanager.h"
|
|
|
|
#include <QApplication>
|
|
#include <QDesktopWidget>
|
|
#include <QNetworkProxy>
|
|
#include <QLibraryInfo>
|
|
|
|
#include "core/qt-gui.h"
|
|
|
|
#ifdef SUBSURFACE_MOBILE
|
|
#include <QQuickWindow>
|
|
#include <QQmlApplicationEngine>
|
|
#include <QQmlContext>
|
|
#include <QSortFilterProxyModel>
|
|
#include "mobile-widgets/qmlmanager.h"
|
|
#include "qt-models/divelistmodel.h"
|
|
#include "mobile-widgets/qmlprofile.h"
|
|
#endif
|
|
|
|
static MainWindow *window = NULL;
|
|
|
|
void init_ui()
|
|
{
|
|
init_qt_late();
|
|
|
|
PluginManager::instance().loadPlugins();
|
|
|
|
window = new MainWindow();
|
|
window->setTitle();
|
|
}
|
|
|
|
void run_ui()
|
|
{
|
|
window->show();
|
|
qApp->exec();
|
|
}
|
|
|
|
void exit_ui()
|
|
{
|
|
delete window;
|
|
delete qApp;
|
|
free((void *)existing_filename);
|
|
}
|
|
|
|
double get_screen_dpi()
|
|
{
|
|
QDesktopWidget *mydesk = qApp->desktop();
|
|
return mydesk->physicalDpiX();
|
|
}
|
|
|
|
|