X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fcomments-dialog.c;h=9b521a7669fb1cfbe4f6f1063807078932e42880;hb=f130490a5cf37625ee3b4d16356ba59725ca40b7;hp=e4304db4db75c24d72f26942ff741771dfff4a81;hpb=f82952d22e200e1b35cea23545857a2cf2f02c66;p=pspp-builds.git diff --git a/src/ui/gui/comments-dialog.c b/src/ui/gui/comments-dialog.c index e4304db4..9b521a76 100644 --- a/src/ui/gui/comments-dialog.c +++ b/src/ui/gui/comments-dialog.c @@ -16,14 +16,14 @@ #include -#include #include "psppire-dialog.h" #include "helper.h" -#include "data-editor.h" +#include "psppire-data-window.h" +#include "psppire-data-editor.h" #include -#include "syntax-editor.h" +#include "psppire-syntax-window.h" #include "psppire-var-store.h" -#include +#include #include "comments-dialog.h" @@ -96,7 +96,7 @@ comments_dialog (GObject *o, gpointer data) { GtkTextIter iter; gint response ; - struct data_editor *de = data; + PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data); struct comment_dialog cd; GladeXML *xml = XML_NEW ("psppire.glade"); @@ -110,7 +110,7 @@ comments_dialog (GObject *o, gpointer data) g_object_get (de->data_editor, "var-store", &vs, NULL); - gtk_window_set_transient_for (GTK_WINDOW (dialog), de->parent.window); + gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de)); { PangoContext * context ; @@ -178,10 +178,11 @@ comments_dialog (GObject *o, gpointer data) { gchar *syntax = generate_syntax (&cd); - struct syntax_editor *se = - (struct syntax_editor *) window_create (WINDOW_SYNTAX, NULL); + GtkWidget *se = psppire_syntax_window_new (); - gtk_text_buffer_insert_at_cursor (se->buffer, syntax, -1); + gtk_text_buffer_insert_at_cursor (PSPPIRE_SYNTAX_WINDOW (se)->buffer, syntax, -1); + + gtk_widget_show (se); g_free (syntax); } @@ -245,27 +246,27 @@ generate_syntax (const struct comment_dialog *cd) for (i = 0 ; i < gtk_text_buffer_get_line_count (buffer) ; ++i ) { - struct string line; - GtkTextIter start, end; - gtk_text_buffer_get_iter_at_line (buffer, &start, i); - - end = start; + struct string tmp; + GtkTextIter start; + char *line; - gtk_text_iter_forward_to_line_end (&end); - - if ( gtk_text_iter_ends_line (&start)) - ds_init_cstr (&line, ""); + gtk_text_buffer_get_iter_at_line (buffer, &start, i); + if (gtk_text_iter_ends_line (&start)) + line = g_strdup (""); else - ds_init_cstr (&line, - gtk_text_buffer_get_text (buffer, - &start, &end, - FALSE)); + { + GtkTextIter end = start; + gtk_text_iter_forward_to_line_end (&end); + line = gtk_text_buffer_get_text (buffer, &start, &end, FALSE); + } - gen_quoted_string (&line); + ds_init_empty (&tmp); + syntax_gen_string (&tmp, ss_cstr (line)); + g_free (line); - g_string_append_printf (str, " %s\n", ds_cstr (&line)); + g_string_append_printf (str, " %s\n", ds_cstr (&tmp)); - ds_destroy (&line); + ds_destroy (&tmp); } g_string_append (str, " .\n");