Separate initializing Qt from initializing the UI

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-06-16 06:52:06 -07:00
parent 6a0e1cd9f6
commit 0692e24036
5 changed files with 66 additions and 54 deletions

View file

@ -1,10 +1,12 @@
#ifndef QT_GUI_H
#define QT_GUI_H
void init_qt(int *argcp, char ***argvp);
void init_ui(void);
#include <QApplication>
void run_ui(void);
void exit_ui(void);
void init_qt_late();
void init_ui();
void run_ui();
void exit_ui();
#endif // QT_GUI_H