X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-rank.c;h=c0454d10f3b86a1855bad7faad9493a227dda7c8;hb=53241f59ac766997bf67870639f70afb82396640;hp=bbf30a61ce0a47420f01bd9b11d186eaaee160ff;hpb=bb62eb8be2e36af4f6c2a9e5779bfd58e13ec8b3;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-rank.c b/src/ui/gui/psppire-dialog-action-rank.c index bbf30a61ce..c0454d10f3 100644 --- a/src/ui/gui/psppire-dialog-action-rank.c +++ b/src/ui/gui/psppire-dialog-action-rank.c @@ -36,7 +36,7 @@ G_DEFINE_TYPE (PsppireDialogActionRank, psppire_dialog_action_rank, PSPPIRE_TYPE static char * -generate_syntax (PsppireDialogAction *act) +generate_syntax (const PsppireDialogAction *act) { PsppireDialogActionRank *rd = PSPPIRE_DIALOG_ACTION_RANK (act); @@ -53,7 +53,7 @@ generate_syntax (PsppireDialogAction *act) gtk_toggle_button_get_active (rd->ascending_togglebutton) ?'A':'D'); - if ( gtk_tree_model_get_iter_first (gs, ¬used) ) + if (gtk_tree_model_get_iter_first (gs, ¬used)) { g_string_append (str, "\n\tBY "); @@ -94,24 +94,24 @@ generate_syntax (PsppireDialogAction *act) { g_string_append (str, "\n\t/FRACTION="); - if ( gtk_toggle_button_get_active (rd->blom)) + if (gtk_toggle_button_get_active (rd->blom)) g_string_append (str, "BLOM"); - else if ( gtk_toggle_button_get_active (rd->tukey)) + else if (gtk_toggle_button_get_active (rd->tukey)) g_string_append (str, "TUKEY"); - else if ( gtk_toggle_button_get_active (rd->rankit)) + else if (gtk_toggle_button_get_active (rd->rankit)) g_string_append (str, "RANKIT"); - else if ( gtk_toggle_button_get_active (rd->vw)) + else if (gtk_toggle_button_get_active (rd->vw)) g_string_append (str, "VW"); } g_string_append (str, "\n\t/TIES="); - if ( gtk_toggle_button_get_active (rd->mean)) + if (gtk_toggle_button_get_active (rd->mean)) g_string_append (str, "MEAN"); - else if ( gtk_toggle_button_get_active (rd->low)) + else if (gtk_toggle_button_get_active (rd->low)) g_string_append (str, "LOW"); - else if ( gtk_toggle_button_get_active (rd->high)) + else if (gtk_toggle_button_get_active (rd->high)) g_string_append (str, "HIGH"); - else if ( gtk_toggle_button_get_active (rd->condense)) + else if (gtk_toggle_button_get_active (rd->condense)) g_string_append (str, "CONDENSE"); @@ -155,7 +155,7 @@ types_dialog_reset (PsppireDialogActionRank *rd) { gint i; - for (i = 0 ; i < n_RANK_FUNCS ; ++i ) + for (i = 0 ; i < n_RANK_FUNCS ; ++i) gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->func_button [i]), FALSE); @@ -169,14 +169,12 @@ run_types_dialog (GtkButton *b, PsppireDialogActionRank *dar) { PsppireDialogAction *act = PSPPIRE_DIALOG_ACTION (dar); - gint response; - gtk_window_set_transient_for (GTK_WINDOW (dar->types_dialog), GTK_WINDOW (act->dialog)); types_dialog_reset (dar); - response = psppire_dialog_run (PSPPIRE_DIALOG (dar->types_dialog)); + psppire_dialog_run (PSPPIRE_DIALOG (dar->types_dialog)); } static void @@ -184,12 +182,10 @@ run_ties_dialog (GtkButton *b, PsppireDialogActionRank *dar) { PsppireDialogAction *act = PSPPIRE_DIALOG_ACTION (dar); - gint response; - gtk_window_set_transient_for (GTK_WINDOW (dar->ties_dialog), GTK_WINDOW (act->dialog)); - response = psppire_dialog_run (PSPPIRE_DIALOG (dar->ties_dialog)); + psppire_dialog_run (PSPPIRE_DIALOG (dar->ties_dialog)); } static void @@ -210,14 +206,13 @@ set_sensitivity (PsppireDialogActionRank *dar) gtk_widget_set_sensitive (dar->formula_box, sens); } -static void -psppire_dialog_action_rank_activate (GtkAction *a) +static GtkBuilder * +psppire_dialog_action_rank_activate (PsppireDialogAction *a, GVariant *param) { PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a); PsppireDialogActionRank *act = PSPPIRE_DIALOG_ACTION_RANK (a); GtkBuilder *xml = builder_new ("rank.ui"); - GtkWidget *types_button = get_widget_assert (xml, "button1"); GtkWidget *ties_button = get_widget_assert (xml, "button2"); @@ -296,15 +291,13 @@ psppire_dialog_action_rank_activate (GtkAction *a) psppire_dialog_action_set_valid_predicate (pda, (void *) dialog_state_valid); psppire_dialog_action_set_refresh (pda, dialog_refresh); - PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_rank_parent_class)->activate (pda); - - g_object_unref (xml); + return xml; } static void psppire_dialog_action_rank_class_init (PsppireDialogActionRankClass *class) { - GTK_ACTION_CLASS (class)->activate = psppire_dialog_action_rank_activate; + PSPPIRE_DIALOG_ACTION_CLASS (class)->initial_activate = psppire_dialog_action_rank_activate; PSPPIRE_DIALOG_ACTION_CLASS (class)->generate_syntax = generate_syntax; }