mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Delay Qt ui construction
The Qt ui will need to read the dive_table to populate widgets with dives. Gtk functionality in init_ui is required to parse the dives. Split init_ui to allow parsing to proceed and complete before Qt ui mainwindow constructor is called. Play with qDebug()'s printf style (Thiago!) Signed-off-by: Amit Chaudhuri <amit.k.chaudhuri@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
115ee47bfc
commit
073be111f4
5 changed files with 17 additions and 9 deletions
7
main.c
7
main.c
|
@ -335,7 +335,7 @@ int main(int argc, char **argv)
|
|||
subsurface_command_line_init(&argc, &argv);
|
||||
parse_xml_init();
|
||||
|
||||
init_ui(&argc, &argv);
|
||||
init_ui(&argc, &argv); /* the gtk stuff is needed for parsing below */
|
||||
|
||||
for (i = 1; i < argc; i++) {
|
||||
const char *a = argv[i];
|
||||
|
@ -372,12 +372,13 @@ int main(int argc, char **argv)
|
|||
report_dives(imported, FALSE);
|
||||
if (dive_table.nr == 0)
|
||||
show_dive_info(NULL);
|
||||
run_ui();
|
||||
exit_ui();
|
||||
|
||||
parse_xml_exit();
|
||||
subsurface_command_line_exit(&argc, &argv);
|
||||
|
||||
init_qt_ui(&argc, &argv); /* qt bit delayed until dives are parsed */
|
||||
run_ui();
|
||||
exit_ui();
|
||||
#ifdef DEBUGFILE
|
||||
if (debugfile)
|
||||
fclose(debugfile);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue