mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
f762367d53
MainWindow is a "singleton" and has an instance() member function. No point in keeping a second static pointer in subsurface-desktop-helper.cpp. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
46 lines
768 B
C++
46 lines
768 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"
|
|
|
|
void init_ui()
|
|
{
|
|
init_qt_late();
|
|
|
|
PluginManager::instance().loadPlugins();
|
|
|
|
MainWindow *window = new MainWindow();
|
|
window->setTitle();
|
|
}
|
|
|
|
void run_ui()
|
|
{
|
|
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();
|
|
}
|
|
|
|
|