X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-sort.c;h=7dfb0b278ce895ba3f50ef7fb667e9fb7132d5c1;hb=b525a9596e60d5ae4c6c464b4a426b77ade3dd72;hp=c911d437f7489b17aa8cec3430a24cc6b1bb7783;hpb=ed208cf009043f0bf319a4e919c279d5b1401f36;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-sort.c b/src/ui/gui/psppire-dialog-action-sort.c index c911d437f7..7dfb0b278c 100644 --- a/src/ui/gui/psppire-dialog-action-sort.c +++ b/src/ui/gui/psppire-dialog-action-sort.c @@ -30,7 +30,7 @@ static void psppire_dialog_action_sort_class_init (PsppireDialogActionSortC G_DEFINE_TYPE (PsppireDialogActionSort, psppire_dialog_action_sort, PSPPIRE_TYPE_DIALOG_ACTION); static char * -generate_syntax (PsppireDialogAction *act) +generate_syntax (const PsppireDialogAction *act) { PsppireDialogActionSort *scd = PSPPIRE_DIALOG_ACTION_SORT (act); gchar *text; @@ -39,7 +39,7 @@ generate_syntax (PsppireDialogAction *act) PsppireVarView *var_view = PSPPIRE_VAR_VIEW (scd->variables); gint n_vars = psppire_var_view_append_names (var_view, 0, string); - if ( n_vars == 0 ) + if (n_vars == 0) { g_string_assign (string, ""); } @@ -82,30 +82,24 @@ dialog_state_valid (gpointer act) gint n_rows = gtk_tree_model_iter_n_children (model, NULL); - if ( n_rows == 0 ) + if (n_rows == 0) return FALSE; return TRUE; } -static void -psppire_dialog_action_sort_activate (GtkAction *a) +static GtkBuilder * +psppire_dialog_action_sort_activate (PsppireDialogAction *a, GVariant *param) { PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a); PsppireDialogActionSort *act = PSPPIRE_DIALOG_ACTION_SORT (a); - GHashTable *thing = psppire_dialog_action_get_hash_table (pda); - GtkBuilder *xml = g_hash_table_lookup (thing, a); - if (!xml) - { - xml = builder_new ("sort.ui"); - g_hash_table_insert (thing, a, xml); - } + GtkBuilder *xml = builder_new ("sort.ui"); pda->dialog = get_widget_assert (xml, "sort-cases-dialog"); pda->source = get_widget_assert (xml, "sort-cases-treeview1"); - + act->variables = get_widget_assert (xml, "sort-cases-treeview2"); act->ascending = get_widget_assert (xml, "sort-cases-radiobutton0"); @@ -113,18 +107,16 @@ psppire_dialog_action_sort_activate (GtkAction *a) psppire_dialog_action_set_valid_predicate (pda, dialog_state_valid); - - if (PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_sort_parent_class)->activate) - PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_sort_parent_class)->activate (pda); + return xml; } static void psppire_dialog_action_sort_class_init (PsppireDialogActionSortClass *class) { PsppireDialogActionClass *pdac = PSPPIRE_DIALOG_ACTION_CLASS (class); - psppire_dialog_action_set_activation (class, psppire_dialog_action_sort_activate); + PSPPIRE_DIALOG_ACTION_CLASS (class)->initial_activate = psppire_dialog_action_sort_activate; - pdac->generate_syntax = generate_syntax; + pdac->generate_syntax = generate_syntax; }