mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
fa5e685279
Simple rewrite of a piece of code separated to its own function so that is can be used in other places as well. To avoid code duplication for dynamic BT on/off switching on mobile. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
17 lines
284 B
C
17 lines
284 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef QT_GUI_H
|
|
#define QT_GUI_H
|
|
|
|
void init_qt_late();
|
|
void init_ui();
|
|
|
|
void run_ui();
|
|
void exit_ui();
|
|
void set_non_bt_addresses();
|
|
|
|
#if defined(SUBSURFACE_MOBILE)
|
|
#include <QQuickWindow>
|
|
extern QObject *qqWindowObject;
|
|
#endif
|
|
|
|
#endif // QT_GUI_H
|