X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fdata-editor.h;h=237b6769a896ecd4bb8580e3e2b7d0e43cf2e6bd;hb=9d179d5ede561c69812b3afbcd9bf58f96e99663;hp=8d79082ca4bf4e09ef1ab3a2dd49b3e3265cd286;hpb=e8f3c723e255ca91fe94512a809762223e6edcc3;p=pspp-builds.git diff --git a/src/ui/gui/data-editor.h b/src/ui/gui/data-editor.h index 8d79082c..237b6769 100644 --- a/src/ui/gui/data-editor.h +++ b/src/ui/gui/data-editor.h @@ -21,6 +21,7 @@ #include #include #include "window-manager.h" +#include "psppire-data-editor.h" struct data_editor { @@ -32,6 +33,8 @@ struct data_editor GtkAction *action_data_save; + GtkAction *invoke_text_import_assistant; + /* Actions which invoke dialog boxes */ GtkAction *invoke_weight_cases_dialog; GtkAction *invoke_transpose_dialog; @@ -51,12 +54,15 @@ struct data_editor 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; GtkAction *invoke_oneway_anova_dialog; GtkAction *invoke_t_test_one_sample_dialog; + GtkToggleAction *toggle_split_window; + /* Actions which do things */ GtkAction *insert_variable; @@ -71,6 +77,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 +94,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