Enables Data Open/Save/New menuitems.
[pspp-builds.git] / src / ui / gui / data-editor.h
index 63b82a4a67e14c0f9243c0ab809b39fe3b75c2dd..71bfd0e67a291a28adc2ed5eabd0f8f6ec93898c 100644 (file)
@@ -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
 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;
+
   GladeXML *xml;
+
+  gboolean save_as_portable;
+  gchar *file_name;
 };
 
 
@@ -36,8 +47,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);