X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Ffrequencies-dialog.c;h=8706f3a4e63ac105e0caee6a46e597cee048fc40;hb=66153a44d861ccddf6a176ec5a94ffb959232ad6;hp=36382d6041280c5bab28f95ea6f3d4b35367d6e6;hpb=f82952d22e200e1b35cea23545857a2cf2f02c66;p=pspp-builds.git diff --git a/src/ui/gui/frequencies-dialog.c b/src/ui/gui/frequencies-dialog.c index 36382d60..8706f3a4 100644 --- a/src/ui/gui/frequencies-dialog.c +++ b/src/ui/gui/frequencies-dialog.c @@ -20,17 +20,16 @@ #include "frequencies-dialog.h" #include -#include #include #include -#include +#include #include #include #include #include #include -#include +#include "executor.h" #include "gettext.h" #define _(msgid) gettext (msgid) @@ -308,11 +307,11 @@ void frequencies_dialog (GObject *o, gpointer data) { gint response; - struct data_editor *de = data; + PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data); struct frequencies_dialog fd; - GladeXML *xml = XML_NEW ("frequencies.glade"); + GtkBuilder *xml = builder_new ("frequencies.ui"); GtkWidget *dialog = get_widget_assert (xml, "frequencies-dialog"); GtkWidget *source = get_widget_assert (xml, "dict-treeview"); @@ -332,13 +331,13 @@ frequencies_dialog (GObject *o, gpointer data) ); - gtk_window_set_transient_for (GTK_WINDOW (dialog), de->parent.window); + gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de)); - attach_dictionary_to_treeview (GTK_TREE_VIEW (source), - vs->dict, - GTK_SELECTION_MULTIPLE, NULL); + g_object_get (vs, "dictionary", &fd.dict, NULL); + g_object_set (source, "dictionary", fd.dict, NULL); - set_dest_model (GTK_TREE_VIEW (dest), vs->dict); + + set_dest_model (GTK_TREE_VIEW (dest), fd.dict); psppire_selector_set_subjects (PSPPIRE_SELECTOR (selector), @@ -350,7 +349,6 @@ frequencies_dialog (GObject *o, gpointer data) fd.stat_vars = GTK_TREE_VIEW (dest); - fd.dict = vs->dict; fd.table_button = get_widget_assert (xml, "checkbutton1"); fd.format_dialog = get_widget_assert (xml, "format-dialog"); fd.maximum_cats = get_widget_assert (xml, "hbox5"); @@ -370,7 +368,7 @@ frequencies_dialog (GObject *o, gpointer data) fd.current_opts.limit = 50; - gtk_window_set_transient_for (GTK_WINDOW (fd.format_dialog), de->parent.window); + gtk_window_set_transient_for (GTK_WINDOW (fd.format_dialog), GTK_WINDOW (de)); g_signal_connect (dialog, "refresh", G_CALLBACK (refresh), &fd); @@ -394,6 +392,7 @@ frequencies_dialog (GObject *o, gpointer data) case GTK_RESPONSE_OK: { gchar *syntax = generate_syntax (&fd); + struct getl_interface *sss = create_syntax_string_source (syntax); execute_syntax (sss); @@ -403,12 +402,7 @@ frequencies_dialog (GObject *o, gpointer data) case PSPPIRE_RESPONSE_PASTE: { gchar *syntax = generate_syntax (&fd); - - struct syntax_editor *se = - (struct syntax_editor *) window_create (WINDOW_SYNTAX, NULL); - - gtk_text_buffer_insert_at_cursor (se->buffer, syntax, -1); - + paste_syntax_in_new_window (syntax); g_free (syntax); } break;