X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-factor.c;h=4c5d927e287cbb57eb2c210ceb47b47d7c6525b7;hb=0f447caa885d8f0fd8c30d4440556d9b6abb99ea;hp=e8874449cc70afb209672d99c64986531a00ad4d;hpb=2a71889bf86463fb752bcbab248da47b25b4fd9a;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-factor.c b/src/ui/gui/psppire-dialog-action-factor.c index e8874449cc..4c5d927e28 100644 --- a/src/ui/gui/psppire-dialog-action-factor.c +++ b/src/ui/gui/psppire-dialog-action-factor.c @@ -38,7 +38,7 @@ static void psppire_dialog_action_factor_class_init (PsppireDialogActionFac G_DEFINE_TYPE (PsppireDialogActionFactor, psppire_dialog_action_factor, PSPPIRE_TYPE_DIALOG_ACTION); -static const char *rot_method_syntax[] = +static const char *rot_method_syntax[] = { "NOROTATE", "VARIMAX", @@ -56,7 +56,7 @@ on_extract_toggle (GtkToggleButton *button, PsppireDialogActionFactor *f) } static char * -generate_syntax (PsppireDialogAction *act) +generate_syntax (const PsppireDialogAction *act) { PsppireDialogActionFactor *rd = PSPPIRE_DIALOG_ACTION_FACTOR (act); @@ -105,7 +105,7 @@ generate_syntax (PsppireDialogAction *act) ds_put_cstr (&str, "\n\t/PRINT = "); ds_put_cstr (&str, "INITIAL "); - if ( rd->extraction.unrotated ) + if ( rd->extraction.unrotated ) ds_put_cstr (&str, "EXTRACTION "); if ( rd->rotation.rotated_solution ) @@ -133,7 +133,7 @@ load_rotation_parameters (PsppireDialogActionFactor *fd, const struct rotation_p { gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fd->display_rotated_solution), p->rotated_solution); - + gtk_spin_button_set_value (GTK_SPIN_BUTTON (fd->rotate_iterations), p->iterations); @@ -184,7 +184,7 @@ load_extraction_parameters (PsppireDialogActionFactor *fd, const struct extracti gtk_combo_box_set_active (GTK_COMBO_BOX (fd->extraction_combo), 1); else gtk_combo_box_set_active (GTK_COMBO_BOX (fd->extraction_combo), 0); - + } static gboolean @@ -293,15 +293,15 @@ run_rotations_subdialog (PsppireDialogActionFactor *act) } } -static void -psppire_dialog_action_factor_activate (GtkAction *a) +static GtkBuilder * +psppire_dialog_action_factor_activate (PsppireDialogAction *a, GVariant *param) { PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a); PsppireDialogActionFactor *act = PSPPIRE_DIALOG_ACTION_FACTOR (a); GtkWidget *extraction_button ; GtkWidget *rotation_button ; - GtkBuilder *xml = builder_new ("factor.ui"); + GtkBuilder *xml = builder_new ( "factor.ui"); pda->dialog = get_widget_assert (xml, "factor-dialog"); pda->source = get_widget_assert (xml, "dict-view"); @@ -359,19 +359,16 @@ psppire_dialog_action_factor_activate (GtkAction *a) G_CALLBACK (run_extractions_subdialog), act); g_signal_connect_swapped (rotation_button, "clicked", G_CALLBACK (run_rotations_subdialog), act); - 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_factor_parent_class)->activate (pda); - - g_object_unref (xml); + return xml; } static void psppire_dialog_action_factor_class_init (PsppireDialogActionFactorClass *class) { - psppire_dialog_action_set_activation (class, psppire_dialog_action_factor_activate); + PSPPIRE_DIALOG_ACTION_CLASS (class)->initial_activate = psppire_dialog_action_factor_activate; PSPPIRE_DIALOG_ACTION_CLASS (class)->generate_syntax = generate_syntax; }