1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2007 Free Software Foundation
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "psppire-dialog.h"
23 #include <gl/xalloc.h>
25 #include "t-test-options.h"
27 #include "widget-io.h"
30 #define _(msgid) gettext (msgid)
31 #define N_(msgid) msgid
40 struct tt_options_dialog
44 GtkWidget *confidence;
45 GtkSpinButton *conf_percent;
46 GtkToggleButton *analysis;
47 GtkToggleButton *listwise;
49 gdouble confidence_interval;
50 gboolean non_default_options;
51 enum exclude_mode excl;
54 struct tt_options_dialog *
55 tt_options_dialog_create (GtkBuilder *xml, GtkWindow *parent)
57 struct tt_options_dialog *tto = xmalloc (sizeof (*tto));
60 widget_scanf (_("Confidence Interval: %2d %%"),
63 tto->dialog = get_widget_assert (xml, "options-dialog");
65 tto->box = get_widget_assert (xml, "vbox1");
67 tto->analysis = GTK_TOGGLE_BUTTON (get_widget_assert (xml, "radiobutton1"));
68 tto->listwise = GTK_TOGGLE_BUTTON (get_widget_assert (xml, "radiobutton2"));
70 gtk_widget_show (tto->confidence);
72 psppire_box_pack_start_defaults (GTK_BOX (tto->box), tto->confidence);
74 gtk_window_set_transient_for (GTK_WINDOW (tto->dialog), parent);
76 tto->confidence_interval = 95;
77 tto->excl = EXCL_ANALYSIS;
84 tt_options_dialog_destroy (struct tt_options_dialog *tto)
86 gtk_container_remove (GTK_CONTAINER (tto->box), tto->confidence);
92 tt_options_dialog_run (struct tt_options_dialog *tto)
96 if ( tto->excl == EXCL_ANALYSIS)
97 gtk_toggle_button_set_active (tto->analysis, TRUE);
99 gtk_toggle_button_set_active (tto->listwise, TRUE);
101 gtk_spin_button_set_value (tto->conf_percent, tto->confidence_interval);
103 response = psppire_dialog_run (PSPPIRE_DIALOG (tto->dialog));
105 if ( response == PSPPIRE_RESPONSE_CONTINUE)
107 tto->non_default_options = TRUE;
109 tto->confidence_interval = gtk_spin_button_get_value (tto->conf_percent);
110 if ( gtk_toggle_button_get_active (tto->analysis) )
111 tto->excl = EXCL_ANALYSIS;
113 tto->excl = EXCL_LISTWISE;
118 tt_options_dialog_append_syntax (struct tt_options_dialog *tto, GString *str)
120 g_string_append (str, "\t/MISSING=");
122 if ( tto->excl == EXCL_ANALYSIS )
123 g_string_append (str, "ANALYSIS");
125 g_string_append (str, "LISTWISE");
128 g_string_append_printf (str, "\n\t/CRITERIA=CIN(%g)",
129 tto->confidence_interval/100.0);