mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
15de7f0b71
This is just a quick first stab to do this, but it at least allows us to share some information with the user. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
17 lines
244 B
C
17 lines
244 B
C
#ifndef QT_GUI_H
|
|
#define QT_GUI_H
|
|
|
|
#include <QApplication>
|
|
|
|
void init_qt_late();
|
|
void init_ui();
|
|
|
|
void run_ui();
|
|
void exit_ui();
|
|
|
|
#if defined(SUBSURFACE_MOBILE)
|
|
#include <QQuickWindow>
|
|
extern QObject *qqWindowObject;
|
|
#endif
|
|
|
|
#endif // QT_GUI_H
|