X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fcomments-dialog.c;h=306e3b40a20846b3c0512bec74783d19b70315bb;hb=refs%2Fbuilds%2F20100914040502%2Fpspp;hp=f425fac2364d2d285429b6fdd48a4db9485d2b8d;hpb=a1efcf97ca2f75f4be6a0389ff2372c03ed2d4e1;p=pspp diff --git a/src/ui/gui/comments-dialog.c b/src/ui/gui/comments-dialog.c index f425fac236..306e3b40a2 100644 --- a/src/ui/gui/comments-dialog.c +++ b/src/ui/gui/comments-dialog.c @@ -18,9 +18,10 @@ #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 "executor.h" #include "psppire-var-store.h" #include @@ -90,11 +91,10 @@ wrap_line (GtkTextBuffer *buffer, void -comments_dialog (GObject *o, gpointer data) +comments_dialog (PsppireDataWindow *de) { GtkTextIter iter; gint response ; - struct data_editor *de = data; struct comment_dialog cd; GtkBuilder *xml = builder_new ("psppire.ui"); @@ -108,7 +108,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 ; @@ -144,7 +144,7 @@ comments_dialog (GObject *o, gpointer data) } cd.xml = xml; - cd.dict = vs->dict; + g_object_get (vs, "dictionary", &cd.dict, NULL); g_signal_connect (buffer, "mark-set", G_CALLBACK (set_column_number), label); @@ -166,6 +166,7 @@ comments_dialog (GObject *o, gpointer data) case GTK_RESPONSE_OK: { gchar *syntax = generate_syntax (&cd); + struct getl_interface *sss = create_syntax_string_source (syntax); execute_syntax (sss); @@ -176,10 +177,7 @@ comments_dialog (GObject *o, gpointer data) { gchar *syntax = generate_syntax (&cd); - struct syntax_editor *se = - (struct syntax_editor *) window_create (WINDOW_SYNTAX, NULL); - - gtk_text_buffer_insert_at_cursor (se->buffer, syntax, -1); + paste_syntax_to_window (syntax); g_free (syntax); }