mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
ee2e43f11a
When some arguments like --help and --version are passed to the executable, we don't need to create the UI at all. This patch separates the QApplication creation which is at first only needed to parse the arguments and then if exit() is not called from subsurfacestartup.c, we can call some of the "init" methods such as setup_system_prefs(), fill_profile_color() etc. At this point init_ui() can be called which no longer needs to accept the command line argument list. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
10 lines
156 B
C
10 lines
156 B
C
#ifndef QT_GUI_H
|
|
#define QT_GUI_H
|
|
|
|
void init_qt(int *argcp, char ***argvp);
|
|
void init_ui(void);
|
|
|
|
void run_ui(void);
|
|
void exit_ui(void);
|
|
|
|
#endif // QT_GUI_H
|