X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-logistic.c;h=8640beef9bb3e23f3d22565f6459eb3e0249a381;hb=cdfb21de2cbbf921b4e1fe0662439da1c460eabc;hp=0426931e85231e10ee2da445e3c6c5f831be9003;hpb=4ad4b27b32995ab6d61167029b66c80411c25962;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-logistic.c b/src/ui/gui/psppire-dialog-action-logistic.c index 0426931e85..8640beef9b 100644 --- a/src/ui/gui/psppire-dialog-action-logistic.c +++ b/src/ui/gui/psppire-dialog-action-logistic.c @@ -27,7 +27,6 @@ #include "psppire-dialog.h" #include "builder-wrapper.h" -#include "checkbox-treeview.h" #include "psppire-dict.h" #include "libpspp/str.h" @@ -97,13 +96,19 @@ on_opts_clicked (PsppireDialogActionLogistic *act) static void -psppire_dialog_action_logistic_activate (GtkAction *a) +psppire_dialog_action_logistic_activate (PsppireDialogAction *a) { PsppireDialogActionLogistic *act = PSPPIRE_DIALOG_ACTION_LOGISTIC (a); PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a); GtkWidget *opts_button; - GtkBuilder *xml = builder_new ("logistic.ui"); + GHashTable *thing = psppire_dialog_action_get_hash_table (pda); + GtkBuilder *xml = g_hash_table_lookup (thing, a); + if (!xml) + { + xml = builder_new ("logistic.ui"); + g_hash_table_insert (thing, a, xml); + } pda->dialog = get_widget_assert (xml, "logistic-dialog"); pda->source = get_widget_assert (xml, "dict-view"); @@ -135,8 +140,6 @@ psppire_dialog_action_logistic_activate (GtkAction *a) gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(act->conf_checkbox), TRUE); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(act->conf_checkbox), FALSE); - g_object_unref (xml); - psppire_dialog_action_set_refresh (pda, refresh); psppire_dialog_action_set_valid_predicate (pda, @@ -154,36 +157,37 @@ generate_syntax (PsppireDialogAction *a) PsppireDialogActionLogistic *rd = PSPPIRE_DIALOG_ACTION_LOGISTIC (a); gchar *text = NULL; - GString *string = g_string_new ("LOGISTIC REGRESSION "); - const gchar *dep = gtk_entry_get_text (GTK_ENTRY (rd->dep_var)); - g_string_append (string, dep); + GString *strx = g_string_new ("LOGISTIC REGRESSION "); - g_string_append (string, " WITH "); + g_string_append (strx, dep); - psppire_var_view_append_names (PSPPIRE_VAR_VIEW (rd->indep_vars), 0, string); + g_string_append (strx, " WITH "); - g_string_append (string, "\n\t/CRITERIA ="); + psppire_var_view_append_names (PSPPIRE_VAR_VIEW (rd->indep_vars), 0, strx); - g_string_append_printf (string, " CUT(%g)", rd->cut_point); - g_string_append_printf (string, " ITERATE(%d)", rd->max_iterations); + g_string_append (strx, "\n\t/CRITERIA ="); + + g_string_append_printf (strx, " CUT(%g)", rd->cut_point); + + g_string_append_printf (strx, " ITERATE(%d)", rd->max_iterations); if (rd->conf) { - g_string_append_printf (string, "\n\t/PRINT = CI(%g)", rd->conf_level); + g_string_append_printf (strx, "\n\t/PRINT = CI(%g)", rd->conf_level); } if (rd->constant) - g_string_append (string, "\n\t/NOORIGIN"); + g_string_append (strx, "\n\t/NOORIGIN"); else - g_string_append (string, "\n\t/ORIGIN"); + g_string_append (strx, "\n\t/ORIGIN"); - g_string_append (string, ".\n"); + g_string_append (strx, ".\n"); - text = string->str; + text = strx->str; - g_string_free (string, FALSE); + g_string_free (strx, FALSE); return text; } @@ -191,9 +195,7 @@ generate_syntax (PsppireDialogAction *a) static void psppire_dialog_action_logistic_class_init (PsppireDialogActionLogisticClass *class) { - GtkActionClass *action_class = GTK_ACTION_CLASS (class); - - action_class->activate = psppire_dialog_action_logistic_activate; + psppire_dialog_action_set_activation (class, psppire_dialog_action_logistic_activate); PSPPIRE_DIALOG_ACTION_CLASS (class)->generate_syntax = generate_syntax; }