X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=inline;f=src%2Fui%2Fgui%2Fdata-editor.h;h=7100e34eb87baa167bc2b238c9d5d650e5672749;hb=a10cebe053263d7e936b6533a3dbf5ac2f0586a1;hp=67784021d8c3e0f9b576a515708caf323e697b3f;hpb=09a1109ddc398f36fe720208e1d38053850cbd2a;p=pspp-builds.git diff --git a/src/ui/gui/data-editor.h b/src/ui/gui/data-editor.h index 67784021..7100e34e 100644 --- a/src/ui/gui/data-editor.h +++ b/src/ui/gui/data-editor.h @@ -28,8 +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; }; @@ -37,8 +52,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);