subsurface/subsurface-core/qt-gui.h
Dirk Hohndel 97fa132202 Move proxy initialization into shared code
This way we can use the same code on desktop and mobile app.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-11-14 09:39:02 -08:00

18 lines
263 B
C

#ifndef QT_GUI_H
#define QT_GUI_H
#include <QApplication>
void init_qt_late();
void init_ui();
void init_proxy();
void run_ui();
void exit_ui();
#if defined(SUBSURFACE_MOBILE)
#include <QQuickWindow>
extern QObject *qqWindowObject;
#endif
#endif // QT_GUI_H