psppire-output-window: Factor out output view as psppire-output-view.
[pspp] / src / ui / gui / psppire-output-window.h
index 606a950475fc6ecc1d4833fb7eea46e9faf8ccdf..06938d3b935d37d2b479396c294c63bc687a76af 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPPIRE - a graphical user interface for PSPP.
-   Copyright (C) 2008, 2009  Free Software Foundation
+   Copyright (C) 2008, 2009, 2010, 2011, 2014  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
 
 #include <glib.h>
 #include <glib-object.h>
-#include <gtk/gtkaction.h>
-#include <gtk/gtktextbuffer.h>
+#include <gtk/gtk.h>
 #include "psppire-window.h"
 #include "psppire.h"
-#include <gtk/gtk.h>
-
-extern int viewer_length;
-extern int viewer_width ;
+#include "libpspp/string-map.h"
 
 
 G_BEGIN_DECLS
@@ -52,13 +48,10 @@ struct _PsppireOutputWindow
   PsppireWindow parent;
 
   /* <private> */
-  GtkLayout *output;
-  int max_width;
-  int y;
+  struct psppire_output_driver *driver;
+  struct psppire_output_view *view;
 
-  GtkTreeView *overview;
-  int last_table_num;
-  GtkTreeIter last_top_level;
+  gboolean dispose_has_run;
 };
 
 struct _PsppireOutputWindowClass