1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2007, 2012 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>
24 #include "builder-wrapper.h"
26 #include "t-test-options.h"
28 #include "widget-io.h"
29 #include "psppire-scanf.h"
32 #define _(msgid) gettext (msgid)
33 #define N_(msgid) msgid
42 struct tt_options_dialog
46 GtkWidget *confidence;
47 GtkSpinButton *conf_percent;
48 GtkToggleButton *analysis;
49 GtkToggleButton *listwise;
51 gdouble confidence_interval;
52 gboolean non_default_options;
53 enum exclude_mode excl;
57 struct tt_options_dialog *
58 tt_options_dialog_create (GtkWindow *parent)
60 struct tt_options_dialog *tto = xmalloc (sizeof (*tto));
62 tto->xml = builder_new ("t-test.ui");
65 psppire_scanf_new (_("Con_fidence Interval: %2d %%"), &tto->conf_percent);
67 g_object_set (tto->confidence,
68 "use-underline", TRUE,
69 "mnemonic-widget", psppire_scanf_get_child (PSPPIRE_SCANF (tto->confidence), 0),
72 tto->dialog = get_widget_assert (tto->xml, "options-dialog");
74 tto->box = get_widget_assert (tto->xml, "vbox1");
76 tto->analysis = GTK_TOGGLE_BUTTON (get_widget_assert (tto->xml, "radiobutton1"));
77 tto->listwise = GTK_TOGGLE_BUTTON (get_widget_assert (tto->xml, "radiobutton2"));
79 gtk_widget_show (tto->confidence);
81 psppire_box_pack_start_defaults (GTK_BOX (tto->box), tto->confidence);
83 gtk_window_set_transient_for (GTK_WINDOW (tto->dialog), parent);
85 tto->confidence_interval = 95;
86 tto->excl = EXCL_ANALYSIS;
93 tt_options_dialog_destroy (struct tt_options_dialog *tto)
95 gtk_container_remove (GTK_CONTAINER (tto->box), tto->confidence);
96 g_object_unref (tto->xml);
102 tt_options_dialog_run (struct tt_options_dialog *tto)
106 if ( tto->excl == EXCL_ANALYSIS)
107 gtk_toggle_button_set_active (tto->analysis, TRUE);
109 gtk_toggle_button_set_active (tto->listwise, TRUE);
111 gtk_spin_button_set_value (tto->conf_percent, tto->confidence_interval);
113 response = psppire_dialog_run (PSPPIRE_DIALOG (tto->dialog));
115 if ( response == PSPPIRE_RESPONSE_CONTINUE)
117 tto->non_default_options = TRUE;
119 tto->confidence_interval = gtk_spin_button_get_value (tto->conf_percent);
120 if ( gtk_toggle_button_get_active (tto->analysis) )
121 tto->excl = EXCL_ANALYSIS;
123 tto->excl = EXCL_LISTWISE;
128 tt_options_dialog_append_syntax (const struct tt_options_dialog *tto, GString *str)
131 ds_init_empty (&dss);
133 ds_put_cstr (&dss, "\t/MISSING=");
135 if (tto->excl == EXCL_ANALYSIS)
136 ds_put_cstr (&dss, "ANALYSIS");
138 ds_put_cstr (&dss, "LISTWISE");
140 ds_put_c_format (&dss, "\n\t/CRITERIA=CIN(%g)",
141 tto->confidence_interval/100.0);
143 g_string_append (str, ds_cstr (&dss));