X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fdata-editor.h;h=9ea0e9169e0ba71e714dc1ed611e2249116e55dc;hb=5ee84736663824fe12474b78dace867e42893a14;hp=63b82a4a67e14c0f9243c0ab809b39fe3b75c2dd;hpb=bc02bc027697df3207f827de722c26d8cc87e824;p=pspp-builds.git diff --git a/src/ui/gui/data-editor.h b/src/ui/gui/data-editor.h index 63b82a4a..9ea0e916 100644 --- a/src/ui/gui/data-editor.h +++ b/src/ui/gui/data-editor.h @@ -1,21 +1,18 @@ -/* - PSPPIRE --- A Graphical User Interface for PSPP - Copyright (C) 2006 Free Software Foundation +/* PSPPIRE - a graphical user interface for PSPP. + Copyright (C) 2006, 2007 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 2 of the License, or - (at your option) any later version. + 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. + 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, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #ifndef DATA_EDITOR_H @@ -24,11 +21,68 @@ #include #include #include "window-manager.h" +#include "psppire-data-editor.h" struct data_editor { struct editor_window parent; + + GtkAction *action_data_new; + GtkAction *action_data_open; + GtkAction *action_data_save_as; + GtkAction *action_data_save; + + + GtkAction *invoke_text_import_assistant; + + /* Actions which invoke dialog boxes */ + GtkAction *invoke_weight_cases_dialog; + GtkAction *invoke_transpose_dialog; + GtkAction *invoke_split_file_dialog; + GtkAction *invoke_sort_cases_dialog; + GtkAction *invoke_compute_dialog; + GtkAction *invoke_comments_dialog; + GtkAction *invoke_select_cases_dialog; + GtkAction *invoke_goto_dialog; + GtkAction *invoke_variable_info_dialog; + GtkAction *invoke_find_dialog; + GtkAction *invoke_rank_dialog; + GtkAction *invoke_recode_same_dialog; + GtkAction *invoke_recode_different_dialog; + + 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; + GtkAction *invoke_oneway_anova_dialog; + GtkAction *invoke_t_test_one_sample_dialog; + + + /* Actions which do things */ + GtkAction *insert_variable; + GtkAction *insert_case; + GtkAction *delete_variables; + GtkAction *delete_cases; + + GtkToggleAction *toggle_value_labels; + GladeXML *xml; + + GtkMenu *data_sheet_variable_popup_menu; + GtkMenu *data_sheet_cases_popup_menu; + + PsppireDataEditor *data_editor; + + gboolean save_as_portable; + + /* Name of the file this data is associated with (ie, was loaded from or + has been saved to), in "filename encoding", or NULL, if it's not + associated with any file */ + gchar *file_name; }; @@ -36,9 +90,6 @@ struct data_editor * new_data_editor (void); void new_data_window (GtkMenuItem *, gpointer); -void open_data_window (GtkMenuItem *, gpointer); - void data_editor_select_sheet (struct data_editor *de, gint page); - #endif