X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fdata-editor.h;h=7100e34eb87baa167bc2b238c9d5d650e5672749;hb=2b6f9b8c607743ea7324b2b7e9a3b3fe7afa5f4e;hp=d0c6d0905c39864387b82ec34c25f5a0c6c9b4ac;hpb=a486e7cbf4f95d19bb208796e4c92a040cf48f65;p=pspp diff --git a/src/ui/gui/data-editor.h b/src/ui/gui/data-editor.h index d0c6d0905c..7100e34eb8 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,23 @@ 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; + 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,9 +52,7 @@ 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); +void data_editor_select_sheet (struct data_editor *de, gint page); #endif