X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-binomial.c;h=0a9f171f240c0e39cb2cdf4bef7ebb8b1a417122;hb=fb224459eed00514cbc36ecbc311c644f8b22def;hp=2641684c1ca762d85818cff1cc435ee54854bd06;hpb=e2da62d735c597afeef2e0e9b36e5a4a83d7da94;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-binomial.c b/src/ui/gui/psppire-dialog-action-binomial.c index 2641684c1c..0a9f171f24 100644 --- a/src/ui/gui/psppire-dialog-action-binomial.c +++ b/src/ui/gui/psppire-dialog-action-binomial.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2012 Free Software Foundation + Copyright (C) 2012, 2014 Free Software Foundation This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,6 +20,8 @@ #include "psppire-dialog-action-binomial.h" #include "psppire-value-entry.h" +#include + #include "dialog-common.h" #include "helper.h" #include @@ -51,7 +53,7 @@ get_proportion (PsppireDialogActionBinomial *act, double *prop) if (endptr == text) return FALSE; - return TRUE; + return TRUE; } static gboolean @@ -94,13 +96,13 @@ refresh (PsppireDialogAction *da) } -static void -psppire_dialog_action_binomial_activate (GtkAction *a) +static GtkBuilder * +psppire_dialog_action_binomial_activate (PsppireDialogAction *a, GVariant *param) { PsppireDialogActionBinomial *act = PSPPIRE_DIALOG_ACTION_BINOMIAL (a); PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a); - GtkBuilder *xml = builder_new ("binomial.ui"); + GtkBuilder *xml = builder_new ( "binomial.ui"); pda->dialog = get_widget_assert (xml, "binomial-dialog"); pda->source = get_widget_assert (xml, "dict-view"); @@ -112,25 +114,20 @@ psppire_dialog_action_binomial_activate (GtkAction *a) act->cutpoint_entry = get_widget_assert (xml, "cutpoint-entry"); act->cutpoint_button = get_widget_assert (xml, "radiobutton4"); - g_object_unref (xml); - - g_signal_connect (act->cutpoint_button, "toggled", G_CALLBACK (set_sensitivity_from_toggle), act->cutpoint_entry); psppire_dialog_action_set_refresh (pda, refresh); psppire_dialog_action_set_valid_predicate (pda, - dialog_state_valid); - - if (PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_binomial_parent_class)->activate) - PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_binomial_parent_class)->activate (pda); + dialog_state_valid); + return xml; } static char * -generate_syntax (PsppireDialogAction *a) +generate_syntax (const PsppireDialogAction *a) { PsppireDialogActionBinomial *scd = PSPPIRE_DIALOG_ACTION_BINOMIAL (a); gchar *text = NULL; @@ -141,7 +138,7 @@ generate_syntax (PsppireDialogAction *a) ds_init_cstr (&str, "NPAR TEST\n\t/BINOMIAL"); if ( get_proportion (scd, &prop)) - ds_put_c_format (&str, "(%g)", prop); + ds_put_c_format (&str, "(%.*g)", DBL_DIG + 1, prop); ds_put_cstr (&str, " ="); @@ -165,9 +162,7 @@ generate_syntax (PsppireDialogAction *a) static void psppire_dialog_action_binomial_class_init (PsppireDialogActionBinomialClass *class) { - GtkActionClass *action_class = GTK_ACTION_CLASS (class); - - action_class->activate = psppire_dialog_action_binomial_activate; + PSPPIRE_DIALOG_ACTION_CLASS (class)->initial_activate = psppire_dialog_action_binomial_activate; PSPPIRE_DIALOG_ACTION_CLASS (class)->generate_syntax = generate_syntax; }