src/ui/gui/psppire-dialog-action-descriptives.h \
src/ui/gui/psppire-dialog-action-kmeans.c \
src/ui/gui/psppire-dialog-action-kmeans.h \
+ src/ui/gui/psppire-dialog-action-reliability.c \
+ src/ui/gui/psppire-dialog-action-reliability.h \
src/ui/gui/psppire-dialog-action-var-info.c \
src/ui/gui/psppire-dialog-action-var-info.h \
src/ui/gui/psppire-dialog-action-roc.c \
src/ui/gui/recode-dialog.h \
src/ui/gui/regression-dialog.c \
src/ui/gui/regression-dialog.h \
- src/ui/gui/reliability-dialog.c \
- src/ui/gui/reliability-dialog.h \
src/ui/gui/runs-dialog.c \
src/ui/gui/runs-dialog.h \
src/ui/gui/select-cases-dialog.c \
</object>
</child>
<child>
- <object class="GtkAction" id="reliability">
+ <object class="PsppireDialogActionReliability" id="reliability">
<property name="name">reliability</property>
+ <property name="manager">uimanager1</property>
<property name="label" translatable="yes">Re_liability...</property>
</object>
</child>
#include "ui/gui/ks-one-sample-dialog.h"
#include "ui/gui/recode-dialog.h"
#include "ui/gui/regression-dialog.h"
-#include "ui/gui/reliability-dialog.h"
#include "ui/gui/select-cases-dialog.h"
#include "ui/gui/sort-cases-dialog.h"
#include "ui/gui/split-file-dialog.h"
connect_action (de, "linear-regression", G_CALLBACK (regression_dialog));
- connect_action (de, "reliability", G_CALLBACK (reliability_dialog));
-
connect_action (de, "univariate", G_CALLBACK (univariate_dialog));
connect_action (de, "factor-analysis", G_CALLBACK (factor_dialog));
--- /dev/null
+/* PSPPIRE - a graphical user interface for PSPP.
+ Copyright (C) 2012 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
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+
+#include <config.h>
+
+#include "psppire-dialog-action-reliability.h"
+
+#include "psppire-var-view.h"
+
+#include "psppire-dialog.h"
+#include "builder-wrapper.h"
+
+static void psppire_dialog_action_reliability_init (PsppireDialogActionReliability *act);
+static void psppire_dialog_action_reliability_class_init (PsppireDialogActionReliabilityClass *class);
+
+G_DEFINE_TYPE (PsppireDialogActionReliability, psppire_dialog_action_reliability, PSPPIRE_TYPE_DIALOG_ACTION);
+
+static char *
+generate_syntax (PsppireDialogAction *act)
+{
+ PsppireDialogActionReliability *rd = PSPPIRE_DIALOG_ACTION_RELIABILITY (act);
+ gchar *text;
+ GString *string = g_string_new ("RELIABILITY");
+
+ g_string_append (string, "\n\t/VARIABLES=");
+ psppire_var_view_append_names (PSPPIRE_VAR_VIEW (rd->variables), 0, string);
+
+
+ g_string_append (string, "\n\t/MODEL=");
+
+ if ( 0 == gtk_combo_box_get_active (GTK_COMBO_BOX (rd->model_combo)))
+ g_string_append (string, "ALPHA");
+ else
+ g_string_append_printf (string, "SPLIT (%d)",
+ gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (rd->split_spinbutton))
+ );
+
+ if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->scale_if_item_deleted_checkbutton)))
+ g_string_append (string, "\n\t/SUMMARY = TOTAL");
+
+ g_string_append (string, ".\n");
+
+ text = string->str;
+
+ g_string_free (string, FALSE);
+
+ return text;
+}
+
+
+static gboolean
+dialog_state_valid (gpointer user_data)
+{
+ PsppireDialogActionReliability *pda = user_data;
+ GtkTreeModel *liststore =
+ gtk_tree_view_get_model (GTK_TREE_VIEW (pda->variables));
+
+ return (2 <= gtk_tree_model_iter_n_children (liststore, NULL));
+}
+
+static void
+on_method_change (PsppireDialogActionReliability *pda)
+{
+ gtk_widget_set_sensitive (pda->split_point_hbox,
+ ( 1 == gtk_combo_box_get_active (GTK_COMBO_BOX (pda->model_combo))));
+}
+
+
+static void
+refresh (PsppireDialogActionReliability *pda)
+{
+ GtkTreeModel *liststore =
+ gtk_tree_view_get_model (GTK_TREE_VIEW (pda->variables));
+ gtk_list_store_clear (GTK_LIST_STORE (liststore));
+
+ gtk_combo_box_set_active (GTK_COMBO_BOX (pda->model_combo), 0);
+
+ gtk_spin_button_set_value (GTK_SPIN_BUTTON (pda->split_spinbutton), 0);
+
+ gtk_spin_button_set_range (GTK_SPIN_BUTTON (pda->split_spinbutton),
+ 0, 0);
+
+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (pda->scale_if_item_deleted_checkbutton),
+ FALSE);
+}
+
+static void
+psppire_dialog_action_reliability_activate (GtkAction *a)
+{
+ PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a);
+ PsppireDialogActionReliability *act = PSPPIRE_DIALOG_ACTION_RELIABILITY (a);
+
+ GtkBuilder *xml = builder_new ("reliability.ui");
+ pda->dialog = get_widget_assert (xml, "reliability-dialog");
+ pda->source = get_widget_assert (xml, "dict-view");
+
+ act->variables = get_widget_assert (xml, "treeview2");
+
+ act->split_point_hbox = get_widget_assert (xml, "split-point-hbox");
+
+ act->variables = get_widget_assert (xml, "treeview2");
+
+ act->model_combo = get_widget_assert (xml, "combobox1");
+ act->split_spinbutton = get_widget_assert (xml, "spinbutton1");
+
+ act->scale_if_item_deleted_checkbutton = get_widget_assert (xml, "totals-checkbutton");
+
+ g_signal_connect_swapped (act->model_combo, "changed",
+ G_CALLBACK (on_method_change), pda);
+
+ 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_reliability_parent_class)->activate)
+ PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_reliability_parent_class)->activate (pda);
+}
+
+static void
+psppire_dialog_action_reliability_class_init (PsppireDialogActionReliabilityClass *class)
+{
+ GtkActionClass *action_class = GTK_ACTION_CLASS (class);
+ PsppireDialogActionClass *pdac = PSPPIRE_DIALOG_ACTION_CLASS (class);
+
+ action_class->activate = psppire_dialog_action_reliability_activate;
+
+ pdac->generate_syntax = generate_syntax;
+}
+
+
+static void
+psppire_dialog_action_reliability_init (PsppireDialogActionReliability *act)
+{
+}
+
--- /dev/null
+/* PSPPIRE - a graphical user interface for PSPP.
+ Copyright (C) 2012 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
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+
+#include <glib-object.h>
+#include <glib.h>
+
+#include "psppire-dialog-action.h"
+
+#ifndef __PSPPIRE_DIALOG_ACTION_RELIABILITY_H__
+#define __PSPPIRE_DIALOG_ACTION_RELIABILITY_H__
+
+G_BEGIN_DECLS
+
+
+#define PSPPIRE_TYPE_DIALOG_ACTION_RELIABILITY (psppire_dialog_action_reliability_get_type ())
+
+#define PSPPIRE_DIALOG_ACTION_RELIABILITY(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
+ PSPPIRE_TYPE_DIALOG_ACTION_RELIABILITY, PsppireDialogActionReliability))
+
+#define PSPPIRE_DIALOG_ACTION_RELIABILITY_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST ((klass), \
+ PSPPIRE_TYPE_DIALOG_ACTION_RELIABILITY, \
+ PsppireDialogActionReliabilityClass))
+
+
+#define PSPPIRE_IS_DIALOG_ACTION_RELIABILITY(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PSPPIRE_TYPE_DIALOG_ACTION_RELIABILITY))
+
+#define PSPPIRE_IS_DIALOG_ACTION_RELIABILITY_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE ((klass), PSPPIRE_TYPE_DIALOG_ACTION_RELIABILITY))
+
+
+#define PSPPIRE_DIALOG_ACTION_RELIABILITY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), \
+ PSPPIRE_TYPE_DIALOG_ACTION_RELIABILITY, \
+ PsppireDialogActionReliabilityClass))
+
+typedef struct _PsppireDialogActionReliability PsppireDialogActionReliability;
+typedef struct _PsppireDialogActionReliabilityClass PsppireDialogActionReliabilityClass;
+
+
+struct _PsppireDialogActionReliability
+{
+ PsppireDialogAction parent;
+
+ /*< private >*/
+ gboolean dispose_has_run ;
+
+ /* Treeview containing the selected variables */
+ GtkWidget *variables;
+
+ GtkWidget *model_combo;
+ GtkWidget *split_point_hbox;
+ GtkWidget *split_spinbutton;
+ GtkWidget *scale_if_item_deleted_checkbutton;
+};
+
+
+struct _PsppireDialogActionReliabilityClass
+{
+ PsppireDialogActionClass parent_class;
+};
+
+
+GType psppire_dialog_action_reliability_get_type (void) ;
+
+G_END_DECLS
+
+#endif /* __PSPPIRE_DIALOG_ACTION_RELIABILITY_H__ */
+++ /dev/null
-/* PSPPIRE - a graphical user interface for PSPP.
- Copyright (C) 2009, 2010, 2011, 2012 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
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
-
-#include <config.h>
-
-#include "dialog-common.h"
-#include "reliability-dialog.h"
-#include "psppire-selector.h"
-#include "psppire-dictview.h"
-#include "psppire-dialog.h"
-
-#include "psppire-data-window.h"
-#include "psppire-var-view.h"
-
-#include "executor.h"
-#include "builder-wrapper.h"
-#include "helper.h"
-
-#include <gtk/gtk.h>
-
-#include "gettext.h"
-#define _(msgid) gettext (msgid)
-#define N_(msgid) msgid
-
-
-struct reliability
-{
- PsppireDict *dict;
- GtkWidget *model_combo;
- GtkWidget *variables;
- GtkWidget *split_point_hbox;
- GtkWidget *split_spinbutton;
- GtkWidget *scale_if_item_deleted_checkbutton;
-};
-
-
-static char * generate_syntax (const struct reliability *rd);
-
-
-static void
-on_vars_changed (struct reliability *rd)
-{
- GtkTreeModel *tm =
- gtk_tree_view_get_model (GTK_TREE_VIEW (rd->variables));
-
- gint n_vars = gtk_tree_model_iter_n_children (tm, NULL);
-
- gint current_value =
- gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (rd->split_spinbutton));
-
- gint new_value = current_value;
-
- gtk_spin_button_set_range (GTK_SPIN_BUTTON (rd->split_spinbutton),
- 0, n_vars - 1);
-
- if ( current_value > n_vars - 1)
- new_value = n_vars - 1;
-
- gtk_spin_button_set_value (GTK_SPIN_BUTTON (rd->split_spinbutton),
- new_value);
-}
-
-static void
-on_method_change (struct reliability *rd)
-{
- gtk_widget_set_sensitive (rd->split_point_hbox,
- ( 1 == gtk_combo_box_get_active (GTK_COMBO_BOX (rd->model_combo))));
-
-}
-
-static void
-refresh (PsppireDialog *dialog, struct reliability *rd)
-{
- GtkTreeModel *liststore =
- gtk_tree_view_get_model (GTK_TREE_VIEW (rd->variables));
- gtk_list_store_clear (GTK_LIST_STORE (liststore));
-
- gtk_combo_box_set_active (GTK_COMBO_BOX (rd->model_combo), 0);
-
- gtk_spin_button_set_value (GTK_SPIN_BUTTON (rd->split_spinbutton), 0);
-
- gtk_spin_button_set_range (GTK_SPIN_BUTTON (rd->split_spinbutton),
- 0, 0);
-
- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->scale_if_item_deleted_checkbutton),
- FALSE);
-}
-
-
-static gboolean
-dialog_state_valid (gpointer data)
-{
- struct reliability *rd = data;
-
- GtkTreeModel *liststore =
- gtk_tree_view_get_model (GTK_TREE_VIEW (rd->variables));
-
- return (2 <= gtk_tree_model_iter_n_children (liststore, NULL));
-}
-
-
-/* Pops up the Reliability dialog box */
-void
-reliability_dialog (PsppireDataWindow *de)
-{
- struct reliability rd;
- gint response;
-
- GtkBuilder *xml = builder_new ("reliability.ui");
- PsppireVarStore *vs;
-
- GtkWidget *dialog = get_widget_assert (xml, "reliability-dialog");
- GtkWidget *source = get_widget_assert (xml, "dict-view");
-
- rd.split_point_hbox = get_widget_assert (xml, "split-point-hbox");
-
- rd.variables = get_widget_assert (xml, "treeview2");
-
- rd.model_combo = get_widget_assert (xml, "combobox1");
- rd.split_spinbutton = get_widget_assert (xml, "spinbutton1");
-
- rd.scale_if_item_deleted_checkbutton = get_widget_assert (xml, "totals-checkbutton");
-
- g_signal_connect_swapped (rd.model_combo, "changed",
- G_CALLBACK (on_method_change), &rd);
-
- g_object_get (de->data_editor, "var-store", &vs, NULL);
-
- gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de));
-
- g_object_get (vs, "dictionary", &rd.dict, NULL);
- g_object_set (source, "model", rd.dict, NULL);
-
- {
- GtkTreeModel *tm =
- gtk_tree_view_get_model (GTK_TREE_VIEW (rd.variables));
-
-
- g_signal_connect_swapped (tm, "row-inserted",
- G_CALLBACK (on_vars_changed), &rd);
-
- g_signal_connect_swapped (tm, "row-deleted",
- G_CALLBACK (on_vars_changed), &rd);
- }
-
- g_signal_connect (dialog, "refresh", G_CALLBACK (refresh), &rd);
-
- psppire_dialog_set_valid_predicate (PSPPIRE_DIALOG (dialog),
- dialog_state_valid, &rd);
-
- response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
-
-
- switch (response)
- {
- case GTK_RESPONSE_OK:
- g_free (execute_syntax_string (de, generate_syntax (&rd)));
- break;
- case PSPPIRE_RESPONSE_PASTE:
- g_free (paste_syntax_to_window (generate_syntax (&rd)));
- break;
- default:
- break;
- }
-
- g_object_unref (xml);
-}
-
-
-\f
-
-static char *
-generate_syntax (const struct reliability *rd)
-{
- gchar *text;
- GString *string = g_string_new ("RELIABILITY");
-
- g_string_append (string, "\n\t/VARIABLES=");
- psppire_var_view_append_names (PSPPIRE_VAR_VIEW (rd->variables), 0, string);
-
-
- g_string_append (string, "\n\t/MODEL=");
-
- if ( 0 == gtk_combo_box_get_active (GTK_COMBO_BOX (rd->model_combo)))
- g_string_append (string, "ALPHA");
- else
- g_string_append_printf (string, "SPLIT (%d)",
- gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (rd->split_spinbutton))
- );
-
- if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->scale_if_item_deleted_checkbutton)))
- g_string_append (string, "\n\t/SUMMARY = TOTAL");
-
- g_string_append (string, ".\n");
-
- text = string->str;
-
- g_string_free (string, FALSE);
-
- return text;
-}
+++ /dev/null
-/* PSPPIRE - a graphical user interface for PSPP.
- Copyright (C) 2009 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
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
-
-#ifndef __RELIABILITY_DIALOG_H
-#define __RELIABILITY_DIALOG_H
-
-
-#include "psppire-data-window.h"
-
-void reliability_dialog (PsppireDataWindow * data);
-
-#endif
#include "psppire-dialog-action-correlation.h"
#include "psppire-dialog-action-descriptives.h"
#include "psppire-dialog-action-kmeans.h"
+#include "psppire-dialog-action-reliability.h"
#include "psppire-dialog-action-roc.h"
#include "psppire-dialog-action-var-info.h"
psppire_dialog_action_descriptives_get_type ();
psppire_dialog_action_kmeans_get_type ();
psppire_dialog_action_var_info_get_type ();
+ psppire_dialog_action_reliability_get_type ();
psppire_dialog_action_roc_get_type ();
}