X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-regression.c;h=fd168c435057c401f0bf36410b285d3fdbfe5440;hb=65dea0d51ec33cbc614a3ec87b5aae28c86f005a;hp=fe3d4418cf0980c458de2ee1ac189ff629ea3935;hpb=4e3feede0f6b3d2e67d6e41a9ddea3738e574dc3;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-regression.c b/src/ui/gui/psppire-dialog-action-regression.c index fe3d4418cf..fd168c4350 100644 --- a/src/ui/gui/psppire-dialog-action-regression.c +++ b/src/ui/gui/psppire-dialog-action-regression.c @@ -36,14 +36,16 @@ #define N_(msgid) msgid -#define REGRESSION_STATS \ - RG (COEFF, N_("Coeff")) \ - RG (R, N_("R")) \ - RG (ANOVA, N_("Anova")) \ - RG (BCOV, N_("Bcov")) +#define REGRESSION_STATS \ + RG (COEFF, N_("Coeff"), N_("Show the regression coefficients")) \ + RG (CI, N_("Conf. Interval"), N_("Show the confidence interval for the regression coefficients")) \ + RG (R, N_("R"), N_("Show the correlation between observed and predicted values")) \ + RG (ANOVA, N_("Anova"), N_("Show the analysis of variance table")) \ + RG (BCOV, N_("Bcov"), N_("Show the variance coefficient matrix")) + enum { -#define RG(NAME, LABEL) RG_##NAME, +#define RG(NAME, LABEL, TOOLTIP) RG_##NAME, REGRESSION_STATS #undef RG N_REGRESSION_STATS @@ -51,7 +53,7 @@ enum enum { -#define RG(NAME, LABEL) B_RG_##NAME = 1u << RG_##NAME, +#define RG(NAME, LABEL, TOOLTIP) B_RG_##NAME = 1u << RG_##NAME, REGRESSION_STATS #undef RG B_RG_STATS_ALL = (1u << N_REGRESSION_STATS) - 1, @@ -60,7 +62,7 @@ enum static const struct checkbox_entry_item stats[] = { -#define RG(NAME, LABEL) {#NAME, LABEL}, +#define RG(NAME, LABEL, TOOLTIP) {#NAME, LABEL, TOOLTIP}, REGRESSION_STATS #undef RG }; @@ -145,7 +147,14 @@ psppire_dialog_action_regression_activate (GtkAction *a) PsppireDialogActionRegression *act = PSPPIRE_DIALOG_ACTION_REGRESSION (a); PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a); - GtkBuilder *xml = builder_new ("regression.ui"); + GHashTable *thing = psppire_dialog_action_get_pointer (pda); + GtkBuilder *xml = g_hash_table_lookup (thing, a); + if (!xml) + { + xml = builder_new ("regression.ui"); + g_hash_table_insert (thing, a, xml); + } + GtkWidget *stat_button = get_widget_assert (xml, "stat-button"); GtkWidget *save_button = get_widget_assert (xml, "save-button"); @@ -160,8 +169,6 @@ psppire_dialog_action_regression_activate (GtkAction *a) act->pred_button = get_widget_assert (xml, "pred-button"); act->resid_button = get_widget_assert (xml, "resid-button"); - g_object_unref (xml); - psppire_checkbox_treeview_populate (PSPPIRE_CHECKBOX_TREEVIEW (act->stat_view), B_RG_STATS_DEFAULT, N_REGRESSION_STATS, @@ -203,9 +210,10 @@ generate_syntax (PsppireDialogAction *a) g_string_append (string, "\n\t/VARIABLES="); psppire_var_view_append_names (PSPPIRE_VAR_VIEW (rd->indep_vars), 0, string); - g_string_append (string, "\n\t/DEPENDENT=\t"); + g_string_append (string, "\n\t/DEPENDENT="); psppire_var_view_append_names (PSPPIRE_VAR_VIEW (rd->dep_vars), 0, string); - + g_string_append (string, "\n\t/METHOD=ENTER"); + selected = 0; for (i = 0, ok = gtk_tree_model_get_iter_first (model, &iter); ok; i++, ok = gtk_tree_model_iter_next (model, &iter)) @@ -253,9 +261,7 @@ generate_syntax (PsppireDialogAction *a) static void psppire_dialog_action_regression_class_init (PsppireDialogActionRegressionClass *class) { - GtkActionClass *action_class = GTK_ACTION_CLASS (class); - - action_class->activate = psppire_dialog_action_regression_activate; + psppire_dialog_action_set_activation (class, psppire_dialog_action_regression_activate); PSPPIRE_DIALOG_ACTION_CLASS (class)->generate_syntax = generate_syntax; }