mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-01 05:23:24 +00:00
ab05fe3cf8
Remove qmlRegister in desktop-widgets/mapwidget in order to have a shared registration in subsurface-helper.cpp Signed-off-by: Jan Iversen <jani@apache.org>
46 lines
769 B
C++
46 lines
769 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
/* qt-gui.cpp */
|
|
/* Qt UI implementation */
|
|
#include "core/display.h"
|
|
#include "desktop-widgets/mainwindow.h"
|
|
#include "core/qthelper.h"
|
|
#include "core/pluginmanager.h"
|
|
|
|
#include <QApplication>
|
|
#include <QDesktopWidget>
|
|
#include <QNetworkProxy>
|
|
#include <QLibraryInfo>
|
|
|
|
#include "core/qt-gui.h"
|
|
|
|
void init_ui()
|
|
{
|
|
init_qt_late();
|
|
|
|
PluginManager::instance().loadPlugins();
|
|
|
|
MainWindow *window = new MainWindow();
|
|
window->setTitle();
|
|
}
|
|
|
|
void run_ui()
|
|
{
|
|
register_qml_types();
|
|
MainWindow::instance()->show();
|
|
qApp->exec();
|
|
}
|
|
|
|
void exit_ui()
|
|
{
|
|
delete MainWindow::instance();
|
|
delete qApp;
|
|
free((void *)existing_filename);
|
|
}
|
|
|
|
double get_screen_dpi()
|
|
{
|
|
QDesktopWidget *mydesk = qApp->desktop();
|
|
return mydesk->physicalDpiX();
|
|
}
|
|
|
|
|