Fixed bug reporting the significance of paired value t-test.
[pspp-builds.git] / src / ui / gui / data-editor.h
index 6cd609fa0e2c4c8f0ba306b38095f6173c584f83..9ea0e9169e0ba71e714dc1ed611e2249116e55dc 100644 (file)
@@ -21,6 +21,7 @@
 #include <glade/glade.h>
 #include <gtk/gtk.h>
 #include "window-manager.h"
+#include "psppire-data-editor.h"
 
 struct data_editor
 {
@@ -31,6 +32,7 @@ struct data_editor
   GtkAction *action_data_save_as;
   GtkAction *action_data_save;
 
+
   GtkAction *invoke_text_import_assistant;
 
   /* Actions which invoke dialog boxes */
@@ -51,6 +53,8 @@ struct data_editor
   GtkAction *invoke_crosstabs_dialog;
   GtkAction *invoke_descriptives_dialog;
   GtkAction *invoke_frequencies_dialog;
+  GtkAction *invoke_examine_dialog;
+  GtkAction *invoke_regression_dialog;
 
   GtkAction *invoke_t_test_independent_samples_dialog;
   GtkAction *invoke_t_test_paired_samples_dialog;
@@ -71,6 +75,7 @@ struct data_editor
   GtkMenu *data_sheet_variable_popup_menu;
   GtkMenu *data_sheet_cases_popup_menu;
 
+  PsppireDataEditor *data_editor;
 
   gboolean save_as_portable;
 
@@ -87,7 +92,4 @@ void new_data_window (GtkMenuItem *, gpointer);
 
 void data_editor_select_sheet (struct data_editor *de, gint page);
 
-enum {PAGE_DATA_SHEET = 0, PAGE_VAR_SHEET};
-
-
 #endif