X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-two-sample.c;h=b10ee4c137a8b0cb5f04b875064af325274dcdc2;hb=6e80abcaeb7c361477eff4b8a578e54f1def81c4;hp=8cc0c00121101fff73e1aa103ec0301f29e9cc12;hpb=fc6620099bbc53762095569d5356b67a81a85402;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-two-sample.c b/src/ui/gui/psppire-dialog-action-two-sample.c index 8cc0c00121..b10ee4c137 100644 --- a/src/ui/gui/psppire-dialog-action-two-sample.c +++ b/src/ui/gui/psppire-dialog-action-two-sample.c @@ -174,49 +174,49 @@ psppire_dialog_action_two_sample_activate (GtkAction *a) PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a); PsppireDialogActionTwoSample *act = PSPPIRE_DIALOG_ACTION_TWO_SAMPLE (a); - GHashTable *thing = psppire_dialog_action_get_pointer (pda); + GHashTable *thing = psppire_dialog_action_get_hash_table (pda); GtkBuilder *xml = g_hash_table_lookup (thing, a); if (!xml) { xml = builder_new ("paired-samples.ui"); g_hash_table_insert (thing, a, xml); - } - GtkWidget *selector = get_widget_assert (xml, "psppire-selector3"); - pda->dialog = get_widget_assert (xml, "t-test-paired-samples-dialog"); - pda->source = get_widget_assert (xml, "paired-samples-t-test-treeview1"); + /* NPAR Specific options */ + GtkWidget *frame = gtk_frame_new (_("Test Type")); + GtkWidget *bb = gtk_button_box_new (GTK_ORIENTATION_VERTICAL); + GtkWidget *box = get_widget_assert (xml, "dynamic-populate"); - gtk_window_set_title (GTK_WINDOW (pda->dialog), _("Two-Related-Samples Tests")); - act->pairs_treeview = get_widget_assert (xml, "paired-samples-t-test-treeview2"); - act->list_store = GTK_LIST_STORE (gtk_tree_view_get_model (GTK_TREE_VIEW (act->pairs_treeview))); + strcpy (act->nts[NT_WILCOXON].syntax, "/WILCOXON"); + strcpy (act->nts[NT_SIGN].syntax, "/SIGN"); + strcpy (act->nts[NT_MCNEMAR].syntax, "/MCNEMAR"); - { - /* NPAR Specific options */ - GtkWidget *frame = gtk_frame_new (_("Test Type")); - GtkWidget *bb = gtk_button_box_new (GTK_ORIENTATION_VERTICAL); - GtkWidget *box = get_widget_assert (xml, "vbox3"); + act->nts[NT_WILCOXON].button = gtk_check_button_new_with_mnemonic (_("_Wilcoxon")); + act->nts[NT_SIGN].button = gtk_check_button_new_with_mnemonic (_("_Sign")); + act->nts[NT_MCNEMAR].button = gtk_check_button_new_with_mnemonic (_("_McNemar")); + + gtk_box_pack_start (GTK_BOX (bb), act->nts[NT_WILCOXON].button, FALSE, FALSE, 5); + gtk_box_pack_start (GTK_BOX (bb), act->nts[NT_SIGN].button, FALSE, FALSE, 5); + gtk_box_pack_start (GTK_BOX (bb), act->nts[NT_MCNEMAR].button, FALSE, FALSE, 5); + gtk_container_add (GTK_CONTAINER (frame), bb); - strcpy (act->nts[NT_WILCOXON].syntax, "/WILCOXON"); - strcpy (act->nts[NT_SIGN].syntax, "/SIGN"); - strcpy (act->nts[NT_MCNEMAR].syntax, "/MCNEMAR"); + gtk_widget_show_all (frame); - act->nts[NT_WILCOXON].button = gtk_check_button_new_with_mnemonic (_("_Wilcoxon")); - act->nts[NT_SIGN].button = gtk_check_button_new_with_mnemonic (_("_Sign")); - act->nts[NT_MCNEMAR].button = gtk_check_button_new_with_mnemonic (_("_McNemar")); + gtk_box_pack_start (GTK_BOX (box), frame, FALSE, FALSE, 5); + } - gtk_box_pack_start (GTK_BOX (bb), act->nts[NT_WILCOXON].button, FALSE, FALSE, 5); - gtk_box_pack_start (GTK_BOX (bb), act->nts[NT_SIGN].button, FALSE, FALSE, 5); - gtk_box_pack_start (GTK_BOX (bb), act->nts[NT_MCNEMAR].button, FALSE, FALSE, 5); + GtkWidget *selector = get_widget_assert (xml, "psppire-selector3"); - gtk_container_add (GTK_CONTAINER (frame), bb); + pda->dialog = get_widget_assert (xml, "t-test-paired-samples-dialog"); + pda->source = get_widget_assert (xml, "paired-samples-t-test-treeview1"); - gtk_widget_show_all (frame); + gtk_window_set_title (GTK_WINDOW (pda->dialog), _("Two-Related-Samples Tests")); + + act->pairs_treeview = get_widget_assert (xml, "paired-samples-t-test-treeview2"); + act->list_store = GTK_LIST_STORE (gtk_tree_view_get_model (GTK_TREE_VIEW (act->pairs_treeview))); - gtk_box_pack_start (GTK_BOX (box), frame, FALSE, FALSE, 5); - } psppire_dialog_action_set_valid_predicate (pda, dialog_state_valid); psppire_dialog_action_set_refresh (pda, refresh);