X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fdata-editor.h;h=9af3d737cddd03561101c97460a7b9fed7712eab;hb=7751519f5ca0b6106fe3d611010a70804677ab86;hp=67302fa9d5cb82ee199320e6978ee4ccafac8c75;hpb=3f159627d3b80706e58a54be2431c3edbc5333dc;p=pspp-builds.git diff --git a/src/ui/gui/data-editor.h b/src/ui/gui/data-editor.h index 67302fa9..9af3d737 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, 2007 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 @@ -34,10 +31,39 @@ struct data_editor GtkAction *action_data_save_as; GtkAction *action_data_save; + /* 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_descriptives_dialog; + + GtkAction *invoke_t_test_independent_samples_dialog; + GtkAction *invoke_oneway_anova_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; + + gboolean save_as_portable; /* Name of the file this data is associated with (ie, was loaded from or @@ -53,5 +79,7 @@ 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