X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire.c;h=9181d7e571b963575c2aea5ec00e4a6bf9beb2a6;hb=65d602ed236d685ffec00ad1552a193cf47b2e4d;hp=ddfdfbcb8101055db588a73c2e1ba1081ccb0521;hpb=52e144652645cab108fb2db0a970f1ace2cbf2ea;p=pspp diff --git a/src/ui/gui/psppire.c b/src/ui/gui/psppire.c index ddfdfbcb81..9181d7e571 100644 --- a/src/ui/gui/psppire.c +++ b/src/ui/gui/psppire.c @@ -17,7 +17,6 @@ #include -#include #include #include #include @@ -39,6 +38,7 @@ #include "output/driver.h" #include "output/journal.h" #include "output/message-item.h" +#include "output/spv/spv.h" #include "ui/gui/dict-display.h" #include "ui/gui/executor.h" @@ -105,7 +105,7 @@ initialize (const struct init_source *is) bind_textdomain_codeset (PACKAGE, "UTF-8"); break; case 8: - if ( ! gtk_parse_args (is->argc, is->argv) ) + if (! gtk_parse_args (is->argc, is->argv)) { perror ("Error parsing arguments"); exit (1); @@ -160,8 +160,11 @@ handle_msg (const struct msg *m_, void *lexer_) m.first_column = lex_get_first_column (lexer, 0); m.last_column = lex_get_last_column (lexer, 0); } + m.command_name = output_get_command_name (); message_item_submit (message_item_create (&m)); + + free (m.command_name); } void @@ -172,27 +175,34 @@ psppire_set_lexer (struct lexer *lexer) GtkWindow * -psppire_preload_file (const gchar *file) +psppire_preload_file (const gchar *file, GtkWindow *victim) { const gchar *local_encoding = "UTF-8"; - + struct file_handle *fh = fh_create_file (NULL, file, local_encoding, fh_default_properties ()); const char *filename = fh_get_file_name (fh); - + int retval = any_reader_detect (fh, NULL); GtkWindow *w = NULL; /* Check to see if the file is a .sav or a .por file. If not assume that it is a syntax file */ if (retval == 1) - w = open_data_window (NULL, filename, NULL, NULL); + w = open_data_window (PSPPIRE_WINDOW (victim), filename, NULL, NULL); else if (retval == 0) { - create_data_window (); - w = open_syntax_window (filename, NULL); + char *error = spv_detect (filename); + if (!error) + read_spv_file (filename); + else + { + free (error); + create_data_window (); + open_syntax_window (filename, NULL); + } } fh_unref (fh);