X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fdata-editor.h;h=0fe62ea627fda1a6797b8c8a729856bcb726940c;hb=1d5a97ba2afec23855a8294ff2814ab052f6777a;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..0fe62ea6 100644 --- a/src/ui/gui/data-editor.h +++ b/src/ui/gui/data-editor.h @@ -1,6 +1,6 @@ /* PSPPIRE --- A Graphical User Interface for PSPP - Copyright (C) 2006 Free Software Foundation + 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 @@ -28,7 +28,26 @@ 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_weight_cases_dialog; + GtkAction *invoke_transpose_dialog; + GtkAction *invoke_split_file_dialog; + + GtkAction *invoke_sort_cases_dialog; + GladeXML *xml; + + 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,8 +55,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);